This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // question: | |
| // write an function that will find the factorial of a given number | |
| //Loop [Fastest] ------------------------------- | |
| function factorial (n) { | |
| var i, pN; | |
| if(n === 0) { return } | |
| else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Question asked @: | |
| everywhere | |
| // Question: | |
| // Find the largest number in an array | |
| /* *************************** | |
| SOLUTIONS | |
| //************************** */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This seems to be a favorite thanks to this dude | |
| // http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/. | |
| // Expected to be asked @ : | |
| // Gorilla Nation | |
| // Fourth Wall Studios | |
| // ############################################################################## | |
| // Question: | |
| // Write a program that prints the numbers from 1 to 100. |