An open API service indexing awesome lists of open source software.

https://github.com/felipemonobe/99-js-problems

[Javascript] Inspired by 99 Lisp Problems, with functional Javascript AND Modern JS standards
https://github.com/felipemonobe/99-js-problems

challenges functional javascript

Last synced: 3 months ago
JSON representation

[Javascript] Inspired by 99 Lisp Problems, with functional Javascript AND Modern JS standards

Awesome Lists containing this project

README

          

# JS-99: Ninety-Nine Javascript Problems
Based on a Prolog problem list by werner.hett@hti.bfh.ch

## Organization
Problems are categorized by topics, as follows:
- [Lists (01-28)](/src/lists.md)

[Backlog (uncategorized)](/src/backlog.md)

## Solutions
Each problem has 2 solutions, with **functional recursive** and **modern JS (ES2015+)** approaches, respectively. To validate the I/O of the code, unit tests were written.

To run the test suite, make sure to install
this project's dev dependencies:
```
> npm i -D
```
then to run the tests:
```
> npm test
```