Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ofir-frd/algorithm-challanges
Practice programming skills by solving coding questions
https://github.com/ofir-frd/algorithm-challanges
algorithm leetcode leetcode-solutions python
Last synced: 4 days ago
JSON representation
Practice programming skills by solving coding questions
- Host: GitHub
- URL: https://github.com/ofir-frd/algorithm-challanges
- Owner: ofir-frd
- License: apache-2.0
- Created: 2021-12-13T15:13:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-21T07:07:57.000Z (almost 3 years ago)
- Last Synced: 2023-10-20T06:47:47.555Z (about 1 year ago)
- Topics: algorithm, leetcode, leetcode-solutions, python
- Language: Jupyter Notebook
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# algorithm-challanges
Practice programming skills by solving coding questions[![Easy](https://img.shields.io/badge/Easy-7-5cb85c.svg?style=flat)]()
[![Medium](https://img.shields.io/badge/Medium-3-f0ad4e.svg?style=flat)]()
[![Hard](https://img.shields.io/badge/Hard-0-d9534f.svg?style=flat)]()[![Languages](https://img.shields.io/badge/Languages-Python-red.svg?style=flat)]()
[![Author](https://img.shields.io/badge/Author-Ofir%20frd-blue.svg?style=flat)]()
| # | Title | Difficulty | Solution | Runtime | Memory |
| ---- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------- | --------------------------------------------------------- | --------- | ------- |
| 1 | [Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Remove_Duplicates_from_Sorted_Array.py) | 484 ms | 31.8 MB |
| 2 | [Best Time to Buy and Sell Stock II](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Best_Time_to_Buy_and_Sell_Stock.ipynb) | 407 ms | 32 MB |
| 3 | [Rotate Array](https://leetcode.com/problems/rotate-array/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Rotate_Array.ipynb) | 224 ms | 25.6 MB |
| 4 | [Contains Duplicate](https://leetcode.com/problems/contains-duplicate/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Contains_Duplicate.ipynb) | 468 ms | 26 MB |
| 5 | [Single Number](https://leetcode.com/problems/single-number/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Single_Number.ipynb) | 187 ms | 16.7 MB |
| 6 | [Reverse String](https://leetcode.com/problems/reverse-string/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Reverse_String.py) | 220 ms | 18.7 MB |
| 7 | [Delete Node in a Linked List](https://leetcode.com/problems/delete-node-in-a-linked-list/) | ![Easy](https://img.shields.io/badge/Easy-5cb85c.svg?style=flat) | [GitHub](Delete_Node_in_a_Linked_List) | 40 ms | 14.7 MB |
| 8 | [Set Matrix Zeroes](https://leetcode.com/problems/set-matrix-zeroes/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Set_Matrix_Zeroes.py) | 200 ms | 31.7 MB |
| 9 | [Add Two Numbers](https://leetcode.com/problems/add-two-numbers/) | ![Medium](https://img.shields.io/badge/Medium-f0ad4e.svg?style=flat) | [GitHub](Add_Two_Numbers.py) | 111 ms | 14.1 MB, top 2% |