# The Algorithms - JavaScript ### All algorithms implemented in JavaScript (for education) There implementations are for learning purposes. If you want to contribute more efficient solutions feel free to open an issue and commit your solution. ## Inspiration You can look for Algorithms to implement at: [LeetCode Algorithms](https://leetcode.com/problemset/algorithms/) To contribute make sure the Algorithm isn't commited yet! Make sure to add the number of the Issue in your PR. ## Getting Started * Fork this repository (Click the Form button, top right of this page) * Clone your fork fown to your local machine ```markdown git clone https://github.com/your-username/hacktoberfest.git ``` * Create a branch for a new feature ```markdown git checkout -b feature/branch-name ``` * Or if its a bugfix to a file ```markdown git checkout -b bugfix/branch-name ``` * Make your changes (choose from the Tasks above!) * Commit and Push ```markdown git add . git commit -m 'commit message' git push origin branch-name ``` * Create a New Pull Request from your forked repository ( Click the 'New Pull Request' Button located at the top of your repo) * Wait for your PR review and merge approval! * __Star this repository__ if you had fun! __Thank You!__