Dashboard Temp Share Shortlinks Frames API

devwajahat - HTMLify profile

files of /devwajahat/leetcode-easy-problems/how-many-numbers-smaller-then-current-number(1365)/

/devwajahat/leetcode-easy-problems/how-many-numbers-smaller-then-current-number(1365)/index.py
4 Views
0 Comments
class Solution:
def smallerNumbersThanCurrent(self, nums: list[int]) -> list[int]:

ans = []