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
- Host: GitHub
- URL: https://github.com/felipemonobe/99-js-problems
- Owner: FelipeMonobe
- Created: 2022-01-21T19:16:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-09T15:22:24.000Z (over 4 years ago)
- Last Synced: 2025-11-10T13:31:56.852Z (8 months ago)
- Topics: challenges, functional, javascript
- Language: JavaScript
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```