Skip to content

Commit 856a723

Browse files
authored
Merge pull request #1 from Piyush6869/Piyush6869-patch-1
Update Count of Smaller Numbers After Self
2 parents 90fd493 + 08cc947 commit 856a723

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

LeetcodeProblems/Algorithms/Count of Smaller Numbers After Self

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
Question:
2+
Input: nums = [5,2,6,1]
3+
Output: [2,1,1,0]
4+
Explanation:
5+
To the right of 5 there are 2 smaller elements (2 and 1).
6+
To the right of 2 there is only 1 smaller element (1).
7+
To the right of 6 there is 1 smaller element (1).
8+
To the right of 1 there is 0 smaller element.
9+
10+
Example 2:
11+
12+
Input: nums = [-1]
13+
Output: [0]
14+
Example 3:
15+
16+
Input: nums = [-1,-1]
17+
Output: [0,0]
18+
19+
20+
121
def countSmaller(nums):
222
result = []
323
for i in range(len(nums)):

0 commit comments

Comments
 (0)