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

https://github.com/abraaohonorio/leetcode-solutions


https://github.com/abraaohonorio/leetcode-solutions

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# [LeetCode](https://leetcode.com/problemset/all/) Solutions

![Language](https://img.shields.io/badge/language-Python-orange.svg) 

## Array
| # | Title | Solution | Time | Space | Difficulty
|-----|---------------- | --------------- | --------------- | --------------- | -------------
0026 | [Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/)| [Python](./Python/remove-duplicates-from-sorted-array.py) | _O(n)_ | _O(1)_ | Easy
0122 | [122. Best Time to Buy and Sell Stock II](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/) | [Python](./Python/best-time-to-buy-and-sell-stock-ii) | _O(n)_ | _O(1)_ | Medium

## Reference
* [Time Complexity](https://wiki.python.org/moin/TimeComplexity)