Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crutchtheclutch/leetcode
This repo contains all of my personal LeetCode solutions.
https://github.com/crutchtheclutch/leetcode
Last synced: 16 days ago
JSON representation
This repo contains all of my personal LeetCode solutions.
- Host: GitHub
- URL: https://github.com/crutchtheclutch/leetcode
- Owner: CrutchTheClutch
- License: mit
- Created: 2019-07-28T23:43:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-08T02:01:40.000Z (almost 3 years ago)
- Last Synced: 2024-10-18T12:25:08.925Z (20 days ago)
- Size: 33.2 KB
- Stars: 1
- Watchers: 2
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Solved](https://img.shields.io/badge/Solved-0/2093-337ab7.svg?style=flat)](https://github.com/CrutchTheClutch/HackerRank#table-of-contents)
[![Easy](https://img.shields.io/badge/Easy-0-5cb85c.svg?style=flat)](https://github.com/CrutchTheClutch/HackerRank#table-of-contents)
[![Medium](https://img.shields.io/badge/Medium-0-f0ad4e.svg?style=flat)](https://github.com/CrutchTheClutch/HackerRank#table-of-contents)
[![Hard](https://img.shields.io/badge/Hard-0-d9534f.svg?style=flat)](https://github.com/CrutchTheClutch/HackerRank#table-of-contents)[![Languages](https://img.shields.io/badge/Languages-C%23,%20JavaScript-red.svg?style=flat)](https://github.com/CrutchTheClutch/HackerRank#table-of-contents)
[![Author](https://img.shields.io/badge/Author-William%20Crutchfield-blue.svg?style=flat)](https://leetcode.com/CrutchTheClutch/)This repo contains all of my personal LeetCode solutions. The coding solutions provided within this repo are entirely provided by me, [William Crutchfield](https://leetcode.com/CrutchTheClutch/).
_All solutions were made with the sole intent of solving the corresponding LeetCode challenge. Solutions may not be as efficient as possible._
_All solutions are orderd by: Solution # / Language_
| Solved | # | Title | Difficulty | Solution | Runtime | Memory | Language |
| :----: | ---- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------- | ------ | ----------------------------------------------------------------------------- |
| ❌ | 1 | [Two Sum](https://leetcode.com/problems/two-sum) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/1.%20Two%20Sum/Solution.cs) | N/A ms | N/A MB | ![C#](https://img.shields.io/badge/C%23--178600.svg?style=flat) |
| ❌ | 1 | [Two Sum](https://leetcode.com/problems/two-sum) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/1.%20Two%20Sum/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 2 | [Add Two Numbers](https://leetcode.com/problems/two-sum/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Solutions/2.%20Add%20Two%20Numbers/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 3 | [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Solutions/3.%20Longest%20Substring%20Without%20Repeating%20Characters/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 4 | [Median of Two Sorted Arrays](https://leetcode.com/problems/median-of-two-sorted-arrays/) | ![Hard](https://img.shields.io/badge/Hard-d9534f.svg?style=flat) | [GitHub](Solutions/4.%20Median%20of%20Two%20Sorted%20Arrays/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 5 | [Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Solutions/5.%20Longest%20Palindromic%20Substring/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 6 | [ZigZag Conversion](https://leetcode.com/problems/zigzag-conversion/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Solutions/6.%20ZigZag%20Conversion/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 7 | [Reverse Integer](https://leetcode.com/problems/reverse-integer/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/7.%20Reverse%20Integer/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 21 | [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/21.%20Merge%20Two%20Sorted%20Lists/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 28 | [Implement strStr()](https://leetcode.com/problems/implement-strstr/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/28.%20Implement%20strStr%28%29/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 35 | [Search Insert Position](https://leetcode.com/problems/search-insert-position/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/35.%20Search%20Insert%20Position/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 43 | [Multiply Strings](https://leetcode.com/problems/multiply-strings/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Solutions/43.%20Multiply%20Strings/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 67 | [Add Binary](https://leetcode.com/problems/add-binary/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/67.%20Add%20Binary/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 75 | [Sort Colors](https://leetcode.com/problems/sort-colors/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Solutions/75.%20Sort%20Colors/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 232 | [Implement Queue using Stacks](https://leetcode.com/problems/implement-queue-using-stacks/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/232.%20Implement%20Queue%20using%20Stacks/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 346 | [Moving Average from Data Stream](https://leetcode.com/problems/moving-average-from-data-stream/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/346.%20Moving%20Average%20from%20Data%20Stream/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 402 | [Remove K Digits](https://leetcode.com/problems/remove-k-digits/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Solutions/402.%20Remove%20K%20Digits/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 445 | [Add Two Numbers II](https://leetcode.com/problems/add-two-numbers-ii/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Solutions/445.%20Add%20Two%20Numbers%20II/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 482 | [License Key Formatting](https://leetcode.com/problems/license-key-formatting/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/482.%20License%20Key%20Formatting/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 561 | [Array Partition I](https://leetcode.com/problems/array-partition-i/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/561.%20Array%20Partition%20I/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 771 | [Jewels and Stones](https://leetcode.com/problems/jewels-and-stones/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/771.%20Jewels%20and%20Stones/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 788 | [Rotated Digits](https://leetcode.com/problems/rotated-digits/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/788.%20Rotated%20Digits/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 791 | [Custom Sort String](https://leetcode.com/problems/custom-sort-string/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Solutions/791.%20Custom%20Sort%20String/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 929 | [Unique Email Address](https://leetcode.com/problems/unique-email-addresses/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/929.%20Unique%20Email%20Address/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 977 | [Squares of a Sorted Array](https://leetcode.com/problems/squares-of-a-sorted-array/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/977.%20Squares%20of%20a%20Sorted%20Array/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 1021 | [Remove Outermost Parentheses](https://leetcode.com/problems/remove-outermost-parentheses/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/1021.%20Remove%20Outermost%20Parentheses/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 1099 | [Two Sum Less Than K](https://leetcode.com/problems/two-sum-less-than-k/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/1099.%20Two%20Sum%20Less%20Than%20K/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 1128 | [Number of Equivalent Domino Pairs](https://leetcode.com/problems/number-of-equivalent-domino-pairs/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/1128.%20Number%20of%20Equivalent%20Domino%20Pairs/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |
| ❌ | 1185 | [Day of the week](https://leetcode.com/problems/day-of-the-week/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Solutions/1185.%20Day%20of%20the%20week/Solution.js) | N/A ms | N/A MB | ![JavaScript](https://img.shields.io/badge/JavaScript--f1e05a.svg?style=flat) |