https://github.com/seemaullal/CrackingTheCodingInterview-JS
My Javascript solutions to problems in the book Cracking the Coding Interview along with implementations of common data structures
https://github.com/seemaullal/CrackingTheCodingInterview-JS
Last synced: 1 day ago
JSON representation
My Javascript solutions to problems in the book Cracking the Coding Interview along with implementations of common data structures
- Host: GitHub
- URL: https://github.com/seemaullal/CrackingTheCodingInterview-JS
- Owner: seemaullal
- Created: 2015-04-11T13:45:39.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T03:27:36.000Z (about 1 year ago)
- Last Synced: 2024-11-09T04:24:46.230Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 46.9 KB
- Stars: 124
- Watchers: 6
- Forks: 37
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- Awesome-JavaScript-Interviews - github.com/seemaullal/CrackingTheCodingInterview-JS
README
##### Disclaimer ~9 years later
I started this repository in 2015. Since then JS has changed quite a lot. I haven't made any changes to incorporate things like Javascript classes, `let` and `const`, new methods and functions, or any of the many other new features introduced in the last 9+ years. I probably will not though who knows. If you found this somehow and found it helpful, I'm glad it provided some value and welcome any feedback or suggestions.
##### These are my solutions to problems from the book *Cracking the Coding Interview* (5th edition) in Javascript. I am also adding my implementations of common data structures. #####
The problems in the book are created for Java and C++ so not all are well suited for Javascript. Whenever possible, I have tried to do problems in the way the authors intended them to be done (for example, not using arrays to implement things like linked lists, stacks, and queues).
I welcome any and all feedback– there are any issues, please feel free to add a Github issue. Additionally, I encourage contributions to this project. If you have your own solution in Javascript, please make a pull request.