https://github.com/divertimentos/leetcode
Solved Algorithms and Data Structures problems/exercises on Leetcode. There's also solved problems from Google Tech Dev Guide.
https://github.com/divertimentos/leetcode
algorithms-and-data-structures coding-interview-questions javascript leetcode python tech-dev-guide
Last synced: 9 months ago
JSON representation
Solved Algorithms and Data Structures problems/exercises on Leetcode. There's also solved problems from Google Tech Dev Guide.
- Host: GitHub
- URL: https://github.com/divertimentos/leetcode
- Owner: divertimentos
- Created: 2024-05-06T01:47:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-20T15:28:00.000Z (over 1 year ago)
- Last Synced: 2025-01-04T06:14:44.126Z (11 months ago)
- Topics: algorithms-and-data-structures, coding-interview-questions, javascript, leetcode, python, tech-dev-guide
- Language: Python
- Homepage: https://leetcode.com/u/ggteixeira/
- Size: 22.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Leetcode
## Arrays
- **Intersection of two arrays** (easy): I have iterated through the two given lists. If the outer index is contained by the inner list **and** wasn't already added to the result unique list, then it's appended to the result list.
- **Happy Number** (easy): Use recursion to replace the original given parameter by the sum of the square of its digits.