Member-submitted solutions to coding problems. Any language is allowed and questions can be from any platform (Leetcode, Hackerrank, etc.)
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;
}
- Fork this repository
- Add your solution in a new file in the
solutions
folder - Open a pull request!