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

https://github.com/himanshurajora/leetcode_solutions

Solving some array questions
https://github.com/himanshurajora/leetcode_solutions

array competetive-programming leet-code

Last synced: 4 months ago
JSON representation

Solving some array questions

Awesome Lists containing this project

README

          

## Solutions of LeetCode Problems by Vedik Devs

### File Notations
- hm_[filename] for hashmap solution
- bf_[filename] for brute force solution
- it_[filename] for iterative solution
- dp_[filename] for dynamic programming solution
- rec_[filename] for recursive solution

### Easy
- Array Problems
1. [Two Sum](./Easy/Array/TwoSum)
2. [Remove Duplicates from Sorted Array](./Easy/Array/RemoveDuplicatesFromSortedArray)
3. [Remove Element](./Easy/Array/RemoveElement)
4. [Search Insert Position](./Easy/Array/SearchInsertPosition)
5. [Maximum Subarray](./Easy/Array/MaximumSubarray)
6. [Plus One](./Easy/Array/PlusOne)
7. [Merge Sorted Arrays](./Easy/Array/MergeSortedArrays)
8. [Convert Sorted Array to Binary Search Tree](./Easy/Array/ConvertSortedToBST)
9. [Pascal's Triangle](./Easy/Array/PascalsTriangle)