Skip to content

Commit 325ac73

Browse files
authored
Update README.md
1 parent 8e80595 commit 325ac73

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# data-structures-and-algorithm
22

3+
Constraints -
4+
Input | Worst Time Complexity
5+
n ≤ 12 | O(n!)
6+
n ≤ 25 | O(2^n)
7+
n ≤ 100 | O(n^4)
8+
n ≤ 500 | O(n^3)
9+
n ≤ 10^4 | O(n^2)
10+
n ≤ 10^6 | O(n log n)
11+
n ≤ 10^8 | O(n)
12+
n > 10^8 | O(log n) or O(1)
13+
314
## List of standard question
415

516
- ## Array

0 commit comments

Comments
 (0)