semainda / LeetCodeProblems_Repository

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LeetCode Problems - JavaScript

Contributors Issues Open Pull Requests Last Commit Stars Forks Watchers License

About The Project

All algorithms implemented in JavaScript. There implementations are for learning purposes. If you want to contribute more efficient solutions feel free to open an issue and commit your solution.

Issues

To contribute check the Issues. After Coding you can check your Code for correct Results at LeetCode Algorithms

To contribute make sure the Algorithm isn't commited yet! PRs with Algorithms already in the Repo will be closed. Make sure to add the number of the Issue in your PR.

Naming

Please make sure your file is named correctly: LeetCodeNr_AlgorithmName.js -> eg. 001_TwoSum.js or 437_PathSum3.js

Getting Started

  • Fork this repository (Click the Form button, top right of this page)
  • Clone your fork down to your local machine
git clone https://github.com/your-username/LeetCodeProblems_JavaScript.git
  • Create a branch for a new feature
git checkout -b feature/branch-name
  • Or if its a bugfix to a file
git checkout -b bugfix/branch-name
  • Make your changes (choose from the Tasks above!)
  • Commit and Push
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) Make sure you mention the issue in your PR so it's linked to it.
  • Add me (vJechsmayr) as Reviewer
  • Wait for your PR review and merge approval!
  • Star this repository if you had fun!

Thank You!

About

License:MIT License


Languages

Language:JavaScript 100.0%