acm-fsc / coding-prep-solutions

Member-submitted solutions to coding problems

Repository from Github https://github.comacm-fsc/coding-prep-solutionsRepository from Github https://github.comacm-fsc/coding-prep-solutions

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!

About

Member-submitted solutions to coding problems

License:MIT License


Languages

Language:Python 78.3%Language:JavaScript 15.1%Language:C++ 6.6%