Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuangwei/leetcode
Mastering leetcode using simple javaScript.
https://github.com/yuangwei/leetcode
algorithms-and-data-structures javascript leetcode leetcode-solutions
Last synced: 3 days ago
JSON representation
Mastering leetcode using simple javaScript.
- Host: GitHub
- URL: https://github.com/yuangwei/leetcode
- Owner: yuangwei
- License: mit
- Created: 2023-05-17T09:17:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-21T06:52:41.000Z (23 days ago)
- Last Synced: 2025-01-02T15:14:19.015Z (10 days ago)
- Topics: algorithms-and-data-structures, javascript, leetcode, leetcode-solutions
- Language: MDX
- Homepage: https://leetcode.js.org
- Size: 789 KB
- Stars: 61
- Watchers: 13
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
Awesome Lists containing this project
README
JavaScript-LeetCode
---
Mastering Leetcode Problem-Solving Using Simple JavaScript.| #(26) | Title | Solution | Difficulty |
| ---| ----- | -------- | ---------- |
| 1 | [Two Sum](https://leetcode.com/problems/two-sum) | [Solution](https://leetcode.js.org/solutions/two-sum) | Easy |
| 9 | [Palindrome Number](https://leetcode.com/problems/palindrome-number) | [Solution](https://leetcode.js.org/solutions/palindrome-number) | Easy |
| 15 | [3Sum](https://leetcode.com/problems/3sum) | [Solution](https://leetcode.js.org/solutions/3sum) | Medium |
| 20 | [Valid Parentheses](https://leetcode.com/problems/valid-parentheses) | [Solution](https://leetcode.js.org/solutions/valid-parentheses) | Easy |
| 21 | [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists) | [Solution](https://leetcode.js.org/solutions/merge-two-sorted-lists) | Easy |
| 57 | [Insert Interval](https://leetcode.com/problems/insert-interval) | [Solution](https://leetcode.js.org/solutions/insert-interval) | Medium |
| 70 | [Climbing Stairs](https://leetcode.com/problems/climbing-stairs) | [Solution](https://leetcode.js.org/solutions/climbing-stairs) | Easy |
| 102 | [Binary Tree Level Order Traversal](https://leetcode.com/problems/binary-tree-level-order-traversal) | [Solution](https://leetcode.js.org/solutions/binary-tree-level-order-traversal) | Medium |
| 104 | [Maximum Depth of Binary Tree](https://leetcode.com/problems/maximum-depth-of-binary-tree) | [Solution](https://leetcode.js.org/solutions/maximum-depth-of-binary-tree) | Easy |
| 110 | [Balanced Binary Tree](https://leetcode.com/problems/balanced-binary-tree) | [Solution](https://leetcode.js.org/solutions/balanced-binary-tree) | Easy |
| 121 | [Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock) | [Solution](https://leetcode.js.org/solutions/best-time-to-buy-and-sell-stock) | Easy |
| 125 | [Valid Palindrome](https://leetcode.com/problems/valid-palindrome) | [Solution](https://leetcode.js.org/solutions/valid-palindrome) | Easy |
| 141 | [Linked List Cycle](https://leetcode.com/problems/linked-list-cycle) | [Solution](https://leetcode.js.org/solutions/linked-list-cycle) | Easy |
| 169 | [Majority Element](https://leetcode.com/problems/majority-element) | [Solution](https://leetcode.js.org/solutions/majority-element) | Easy |
| 206 | [Reverse Linked List](https://leetcode.com/problems/reverse-linked-list) | [Solution](https://leetcode.js.org/solutions/reverse-linked-list) | Easy |
| 217 | [Contains Duplicate](https://leetcode.com/problems/contains-duplicate) | [Solution](https://leetcode.js.org/solutions/contains-duplicate) | Easy |
| 226 | [Invert Binary Tree](https://leetcode.com/problems/invert-binary-tree) | [Solution](https://leetcode.js.org/solutions/invert-binary-tree) | Easy |
| 235 | [Lowest Common Ancestor of a Binary Search Tree](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree) | [Solution](https://leetcode.js.org/solutions/lowest-common-ancestor-of-a-binary-search-tree) | Medium |
| 242 | [Valid Anagram](https://leetcode.com/problems/valid-anagram) | [Solution](https://leetcode.js.org/solutions/valid-anagram) | Easy |
| 338 | [Counting Bits](https://leetcode.com/problems/counting-bits) | [Solution](https://leetcode.js.org/solutions/counting-bits) | Easy |
| 383 | [Ransom Note](https://leetcode.com/problems/ransom-note) | [Solution](https://leetcode.js.org/solutions/ransom-note) | Easy |
| 409 | [Longest Palindrome](https://leetcode.com/problems/longest-palindrome) | [Solution](https://leetcode.js.org/solutions/longest-palindrome) | Easy |
| 543 | [Diameter of Binary Tree](https://leetcode.com/problems/diameter-of-binary-tree) | [Solution](https://leetcode.js.org/solutions/diameter-of-binary-tree) | Easy |
| 792 | [Binary Search](https://leetcode.com/problems/binary-search) | [Solution](https://leetcode.js.org/solutions/binary-search) | Easy |
| 874 | [Backspace String Compare](https://leetcode.com/problems/backspace-string-compare) | [Solution](https://leetcode.js.org/solutions/backspace-string-compare) | Easy |
| 908 | [Middle of the Linked List](https://leetcode.com/problems/middle-of-the-linked-list) | [Solution](https://leetcode.js.org/solutions/middle-of-the-linked-list) | Easy |