updating DIRECTORY.md

This commit is contained in:
github-actions
2021-10-05 09:33:19 +00:00
parent 0af6c0c86b
commit 42549056b9

View File

@ -23,6 +23,9 @@
## Cache
* [LFUCache](https://github.com/TheAlgorithms/Javascript/blob/master/Cache/LFUCache.js)
* [LRUCache](https://github.com/TheAlgorithms/Javascript/blob/master/Cache/LRUCache.js)
* [Memoize](https://github.com/TheAlgorithms/Javascript/blob/master/Cache/Memoize.js)
* test
* [Memoize](https://github.com/TheAlgorithms/Javascript/blob/master/Cache/test/Memoize.test.js)
## Cellular-Automata
* [ConwaysGameOfLife](https://github.com/TheAlgorithms/Javascript/blob/master/Cellular-Automata/ConwaysGameOfLife.js)