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 (over 4 years ago)
- Default Branch: Leetcode/GFG
- Last Pushed: 2025-03-11T16:32:56.000Z (about 2 months ago)
- Last Synced: 2025-03-11T17:44:14.178Z (about 2 months ago)
- Topics: dsa, dsa-algorithm, dsa-learning-series, dsa-practice, geeksforgeeks, hackerrank, leetcode
- Language: JavaScript
- Homepage:
- Size: 286 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) |
| [0217-contains-duplicate](https://github.com/tush-tr/ps-practice-to-code/tree/master/0217-contains-duplicate) |
| [1392-find-the-difference-of-two-arrays](https://github.com/tush-tr/ps-practice-to-code/tree/master/1392-find-the-difference-of-two-arrays) |
| [2792-neighboring-bitwise-xor](https://github.com/tush-tr/ps-practice-to-code/tree/master/2792-neighboring-bitwise-xor) |
## Hash Table
| |
| ------- |
| [0001-two-sum](https://github.com/tush-tr/ps-practice-to-code/tree/master/0001-two-sum) |
| [0217-contains-duplicate](https://github.com/tush-tr/ps-practice-to-code/tree/master/0217-contains-duplicate) |
| [1392-find-the-difference-of-two-arrays](https://github.com/tush-tr/ps-practice-to-code/tree/master/1392-find-the-difference-of-two-arrays) |
## Bit Manipulation
| |
| ------- |
| [2792-neighboring-bitwise-xor](https://github.com/tush-tr/ps-practice-to-code/tree/master/2792-neighboring-bitwise-xor) |
## Sorting
| |
| ------- |
| [0217-contains-duplicate](https://github.com/tush-tr/ps-practice-to-code/tree/master/0217-contains-duplicate) |
## Two Pointers
| |
| ------- |
| [0125-valid-palindrome](https://github.com/tush-tr/ps-practice-to-code/tree/master/0125-valid-palindrome) |
## String
| |
| ------- |
| [0125-valid-palindrome](https://github.com/tush-tr/ps-practice-to-code/tree/master/0125-valid-palindrome) |