Skip to content

acm-fsc/coding-prep-solutions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Coding Prep Solutions

Member-submitted solutions to coding problems. Any language is allowed and questions can be from any platform (Leetcode, Hackerrank, etc.)

Example Solution

The format for a file name is <problem name>.<language extension>

Ex. add-two-nums.js

// Author: John Doe
// Problem: https://fake-leetcode.com/problems/add-two-nums

function addTwoNums(a,b) {
  return a + b;
}

Contributing

  1. Fork this repository
  2. Add your solution in a new file in the solutions folder
  3. Open a pull request!