https://github.com/thatrobotdev/programming-challenges
My solutions and write-ups for LeetCode problems
https://github.com/thatrobotdev/programming-challenges
Last synced: 3 months ago
JSON representation
My solutions and write-ups for LeetCode problems
- Host: GitHub
- URL: https://github.com/thatrobotdev/programming-challenges
- Owner: thatrobotdev
- License: mit
- Created: 2025-10-31T02:02:51.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-15T16:01:43.000Z (3 months ago)
- Last Synced: 2026-01-15T18:25:47.045Z (3 months ago)
- Language: Java
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# programming-challenges
My solutions and write-ups for LeetCode problems.
> [!IMPORTANT]
> No original problem text or inputs are included when copyrighted, so solutions may require context hosted at the original problem source. However, sample inputs and outputs may be included which are not the original inputs and outputs for each problem.
## LeetCode
| # | Title | Solution | Difficulty | Topics |
|----| ----- | -------- | ---------- | ------ |
|2 | [Two Sum](https://leetcode.com/problems/two-sum/) | [Java](leetcode/2-two-sum/java/) | Easy | Array, Hash Table |
|75. | [Sort Colors](https://leetcode.com/problems/sort-colors/) | [C](leetcode/75-sort-colors/c/) | Medium | Array, Two Pointers, Sorting |
|509 | [Fibonacci Number](https://leetcode.com/problems/fibonacci-number) | [C](leetcode/509-fibonacci-number/c/), [Python 3](leetcode/509-fibonacci-number/python3/) | Easy | Math, Dynamic Programming, Recursion, Memoization |
|3289| [The Two Sneaky Numbers of Digitville](https://leetcode.com/leetcode/the-two-sneaky-numbers-of-digitville/) | [Java](leetcode/3289-the-two-sneaky-numbers-of-digitville/java/) | Easy | Array, Hash Table, Math |
## License
[This repository is licensed under the MIT License](LICENSE).