a collection of Algorithm Function challenges to sharpen your skills and help you get prepared for technical interviews.
- each challenge contains an
Unsolved / Solved folder
. - Start by opening a challenge and navigate to the
Unsolved/folder
- Follow the instructions located in the corresponding readMe.md .
-
You can check to see if your function works properly by opening
Unsolved/test.html
in your web browser.-
Functions that pass the tests will be denoted with a green check mark.
-
Functions that fail the tests will be denoted with a red x and an error message.
-
If you decide to give up you can find the solution in the corresponding
Solved folder
.
-
-
these functions use the
var
declaration. these will still work fine if you choose to useconst/let
respectively. -
keep in mind that
var
is function scoped andlet
is block scoped. 🙂 -
any challenges or features that you want to add feel free to submit a pull request
- I highly recommend checking out the
extension
- Live Server enables the HTML page to reload automatically after changes to files. Which greatly accelerates testing your functions and building with vanilla JavaScript, HTML, and CSS.