Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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) |