An open API service indexing awesome lists of open source software.

https://github.com/woohoeon/leetcode

Solutions to LeetCode challenges.
https://github.com/woohoeon/leetcode

leetcode leetcode-solutions

Last synced: 4 months ago
JSON representation

Solutions to LeetCode challenges.

Awesome Lists containing this project

README

          

# LeetCode
Solutions to LeetCode challenges.

https://leetcode.com

| # | Title | Solution | Acceptance | Difficulty |
|---:|:---|:---:|:---:|:---:|
| 7 | [Reverse Integer (역 정수)](https://leetcode.com/problems/reverse-integer/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/7) | 25% |Easy |
| 168 | [Excel Sheet Column Title (엑셀 시트 열 제목)](https://leetcode.com/problems/excel-sheet-column-title/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/168) | 29% |Easy |
| 204 | [Count Primes (소수 카운트)](https://leetcode.com/problems/count-primes/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/204) | 30% |Easy |
| 404 | [Sum of Left Leaves (왼쪽 잎의 합)](https://leetcode.com/problems/sum-of-left-leaves/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/404) | 49% |Easy |
| 414 | [Third Maximum Number (세 번째 최대 수)](https://leetcode.com/problems/third-maximum-number/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/414) | 29% |Easy |
| 665 | [Non-decreasing Array (감소하지 않는 Array)](https://leetcode.com/problems/non-decreasing-array/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/665) | 19% |Easy |
| 771 | [Jewels and Stones (돌에서 보석찾기)](https://leetcode.com/problems/jewels-and-stones/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/771) | 83% | Easy |
| 783 | [Minimum Distance Between BST Nodes (BST 노드 사이의 최소 거리)](https://leetcode.com/problems/minimum-distance-between-bst-nodes/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/783) | 50% |Easy |
| 807 | [Max Increase to Keep City Skyline (도시 스카이 라인을 유지하기위한 최대 증가)](https://leetcode.com/problems/max-increase-to-keep-city-skyline/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/medium/807) | 82% |Medium |
| 859 | [Buddy Strings (두 개의 문자만 바꾸어 A와 B가 같은지 확인하기)](https://leetcode.com/problems/buddy-strings/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/859) | 27% |Easy |
| 938 | [Range Sum of BST (BST의 범위 합)](https://leetcode.com/problems/range-sum-of-bst/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/938) | 78% |Easy |
| 1108 | [Defanging an IP Address (IP 주소 분리)](https://leetcode.com/problems/defanging-an-ip-address/) | [Javascript](https://github.com/woohoeon/LeetCode/tree/master/easy/1108) | 84% |Easy |

# Other

| Title | Solution |
|:---|:---:|
| [MissingInteger (배열에 포함되지 않은 가장 작은 정수 찾기)](https://app.codility.com/programmers/lessons/4-counting_elements/missing_integer/) | [Javascript](https://github.com/woohoeon/LeetCode/blob/master/other/MissingInteger.md) |