Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tush-tr/ps-practice-to-code
Questions for practice in many languages-- C language, C++, Python 3, JavaScript
https://github.com/tush-tr/ps-practice-to-code
dsa dsa-algorithm dsa-learning-series dsa-practice geeksforgeeks hackerrank leetcode
Last synced: about 1 month ago
JSON representation
Questions for practice in many languages-- C language, C++, Python 3, JavaScript
- Host: GitHub
- URL: https://github.com/tush-tr/ps-practice-to-code
- Owner: tush-tr
- Created: 2020-11-06T13:21:19.000Z (about 4 years ago)
- Default Branch: Leetcode/GFG
- Last Pushed: 2024-10-12T08:40:32.000Z (3 months ago)
- Last Synced: 2024-10-22T13:08:17.997Z (3 months ago)
- Topics: dsa, dsa-algorithm, dsa-learning-series, dsa-practice, geeksforgeeks, hackerrank, leetcode
- Language: JavaScript
- Homepage:
- Size: 250 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Practice to Code
Questions for practice picked from Leetcode & Geeks for Geeks.##
**Time Complexity:**
- [X] Follow the Rule: **108** Operations| Length of Input (N) | Worst Accepted Algorithm |
| -------------- | ------------- |
| **≤ [10..11]**| **O(N!), O(N6)** |
| **≤ [15..18]** | **O(2N * N2)** |
| **≤ [18..22]** | **O(2N * N)** |
| **≤ 100** | **O(N4)** |
| **≤ 400** | **O(N3)** |
| **≤ 2000** | **O(N2 * logN)** |
| **≤ 104** | **O(N2)** |
| **≤ 105** | **O(N * logN)** |
| **≤ 106** | **O(N)**, **O(logN)**, **O(1)** |>Readme Credits: Satyam Tripathi
# LeetCode Topics
## Array
| |
| ------- |
| [0001-two-sum](https://github.com/tush-tr/ps-practice-to-code/tree/master/0001-two-sum) |
## Hash Table
| |
| ------- |
| [0001-two-sum](https://github.com/tush-tr/ps-practice-to-code/tree/master/0001-two-sum) |