Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinzunigacuellar/interview
Leetcode solutions for interview preparation
https://github.com/kevinzunigacuellar/interview
Last synced: 15 days ago
JSON representation
Leetcode solutions for interview preparation
- Host: GitHub
- URL: https://github.com/kevinzunigacuellar/interview
- Owner: kevinzunigacuellar
- Created: 2023-06-02T05:32:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-24T01:20:31.000Z (over 1 year ago)
- Last Synced: 2024-10-07T23:21:11.843Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 70.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solved leetcode problems
[![tests](https://github.com/kevinzunigacuellar/interview-prep/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/kevinzunigacuellar/interview-prep/actions/workflows/test.yml)
| # | Title | Solution | Difficulty |
| ---- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | ---------- |
| 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | [Markdown](./src/leetcode-1/solution.md) | Easy |
| 3 | [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) | [Markdown](./src/leetcode-3/solution.md) | Medium |
| 11 | [Container With Most Water](https://leetcode.com/problems/container-with-most-water/) | [Markdown](./src/leetcode-11/solution.md) | Medium |
| 49 | [Group Anagrams](https://leetcode.com/problems/group-anagrams/) | [Markdown](./src/leetcode-49/solution.md) | Medium |
| 80 | [Remove Duplicates from Sorted Array II](https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/) | [Markdown](./src/leetcode-80/solution.md) | Medium |
| 88 | [Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/) | [Markdown](./src/leetcode-88/solution.md) | Easy |
| 121 | [Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/) | [Markdown](./src/leetcode-121/solution.md) | Easy |
| 167 | [Two Sum II - Input array is sorted](https://leetcode.com/problems/two-sum-ii-input-array-is-sorted) | [Markdown](./src/leetcode-167/solution.md) | Medium |
| 128 | [Longest Consecutive Sequence](https://leetcode.com/problems/longest-consecutive-sequence/) | [Markdown](./src/leetcode-128/solution.md) | Medium |
| 217 | [Contains Duplicate](https://leetcode.com/problems/contains-duplicate/) | [Markdown](./src/leetcode-217/solution.md) | Easy |
| 238 | [Product of Array Except Self](https://leetcode.com/problems/product-of-array-except-self/) | [Markdown](./src/leetcode-238/solution.md) | Medium |
| 347 | [Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/) | [Markdown](./src/leetcode-347/solution.md) | Medium |
| 242 | [Valid Anagram](https://leetcode.com/problems/valid-anagram/) | [Markdown](./src/leetcode-242/solution.md) | Easy |
| 424 | [Longest Repeating Character Replacement](https://leetcode.com/problems/longest-repeating-character-replacement/) | [Markdown](./src/leetcode-424/solution.md) | Medium |
| 1768 | [Merge Strings Alternately](https://leetcode.com/problems/merge-strings-alternately) | [Markdown](./src/leetcode-1768/solution.md) | Easy |