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

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.

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.