https://github.com/gcsecsey/leetcode
Solutions for the LeetCode problems I've encountered.
https://github.com/gcsecsey/leetcode
algorithms data-structures leetcode leetcode-solutions
Last synced: 8 months ago
JSON representation
Solutions for the LeetCode problems I've encountered.
- Host: GitHub
- URL: https://github.com/gcsecsey/leetcode
- Owner: gcsecsey
- Created: 2021-02-11T18:22:50.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-01-24T16:58:28.000Z (almost 4 years ago)
- Last Synced: 2025-01-22T14:28:51.568Z (10 months ago)
- Topics: algorithms, data-structures, leetcode, leetcode-solutions
- Language: TypeScript
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# leetcode
Solutions for the LeetCode problems I've encountered.
| # | Title | Solution(s) | Difficulty |
| ---- | ---------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | ---------- |
| 35 | [Search Insert Position](https://leetcode.com/problems/search-insert-position) | [Typescript](typescript/35_search_insert_position.ts) | Easy |
| 138 | [Copy List with Random Pointer](https://leetcode.com/problems/copy-list-with-random-pointer) | [Typescript](typescript/138_copy_list_with_random_pointers.ts) | Medium |
| 189 | [Rotate Array](https://leetcode.com/problems/copy-list-with-random-pointer) | [Typescript](typescript/138_copy_list_with_random_pointers.ts) | Medium |
| 226 | [Invert Binary Tree](https://leetcode.com/problems/invert-binary-tree) | [Typescript](typescript/226_invert_binary_tree.ts) | Easy |
| 242 | [Valid Anagram](https://leetcode.com/problems/valid-anagram) | [Typescript](typescript/242_valid_anagram.ts) | Easy |
| 278 | [First Bad Version](https://leetcode.com/problems/first-bad-version) | [Typescript](typescript/278_first_bad_version.ts) | Easy |
| 704 | [Binary Search](https://leetcode.com/problems/binary-search) | [Typescript](typescript/704_binary_search.ts) | Easy |
| 784 | [Letter Case Permutation](https://leetcode.com/problems/letter-case-permutation) | [Typescript](typescript/784_letter_case_permutation.ts) | Medium |
| 856 | [Score of Parentheses](https://leetcode.com/problems/score-of-parentheses) | [Typescript](typescript/856_score_of_parentheses.ts) | Medium |
| 977 | [Squares of a Sorted Array](https://leetcode.com/problems/squares-of-a-sorted-array) | [Typescript](typescript/977_squares_of_a_sorted_array.ts) | Easy |
| 1337 | [The K Weakest Rows in a Matrix](https://leetcode.com/problems/the-k-weakest-rows-in-a-matrix) | [Typescript](typescript/1337_k_weakest_rows.ts) | Easy |
| 1342 | [Number of Steps to Reduce a Number to Zero](https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero) | [Rust](rust/1342_number_of_steps.rs), [Typescript](typescript/1342_number_of_steps.ts) | Easy |