Category: Coderbyte
-
Code Interview – Coderbyte – First Factorial – Code challenge – JavaScript Solution Source Code
First Factorial Coderbyte Have the function FirstFactorial(num) take the num parameter being passed and return the factorial of it. For example: if num = 4, then your program should return (4 * 3 * 2 * 1) = 24. For the test cases, the range will be between 1 and 18 and the input will…
-
Code Interview – Coderbyte – Bracket Matcher challenge – JavaScript Solution Source Code
Coderbyte – Bracket Matcher Difficulty: Medium