Gas Station - LeetCode
1:15
Күн бұрын
Integer to Roman - LeetCode
1:02
14 күн бұрын
Roman to Integer - LeetCode
1:51
14 күн бұрын
H-Index - LeetCode
1:24
14 күн бұрын
Contains Duplicate II - LeetCode
1:20
Reverse Words in a String - LeetCode
0:45
Longest Common Prefix - LeetCode
1:06
Length of Last Word - LeetCode
0:40
Happy Number - LeetCode
1:21
Ай бұрын
Group Anagrams - LeetCode
1:20
Valid Anagram - LeetCode
1:25
Ай бұрын
Word Pattern - LeetCode
1:58
Ай бұрын
Isomorphic Strings - LeetCode
1:39
Merge Two Sorted Lists - LeetCode
1:28
Add Two Numbers - LeetCode
1:53
2 ай бұрын
Min Stack - LeetCode
1:34
2 ай бұрын
Simplify Path - LeetCode
1:55
2 ай бұрын
Insert Interval - LeetCode
2:05
2 ай бұрын
Merge Intervals - LeetCode
2:11
2 ай бұрын
Пікірлер
@rohilvarma
@rohilvarma 7 күн бұрын
Lets do peer LC lol
@jonsnow7034
@jonsnow7034 7 күн бұрын
Great, Keep posting the good stuff👍
@Shivangsharmaaaaaaa
@Shivangsharmaaaaaaa 8 күн бұрын
I was doing the same questions today, and it was on my feed nice.
@arsenypogosov7206
@arsenypogosov7206 12 күн бұрын
ans = [1] * len(nums) prod, zero_count = 1, 0 for i in nums: if i != 0: prod *= i else: zero_count += 1 for i in range(len(nums)): ans[i] = 0 if zero_count - (nums[i] == 0) > 0 else prod // (nums[i] if nums[i] != 0 else 1) return ans
@pravinkumarprabakaran3742
@pravinkumarprabakaran3742 16 күн бұрын
Nice. I solved it in a different way
@kamiloweluckypanczoweblend1957
@kamiloweluckypanczoweblend1957 25 күн бұрын
nice
@divyaakula605
@divyaakula605 26 күн бұрын
your approach is genius! opened a new perspective for me. thanks so much for sharing!
27 күн бұрын
Hello! try to improve the sound, it's very hard to hear you.
@theycallmesir1
@theycallmesir1 Ай бұрын
Where would you say is the best place to learn about data structures like this (I've never heard of a trie structure before)
@user-wm4bl8yo8o
@user-wm4bl8yo8o Ай бұрын
Thank you keep doing
@nikhilyadav6582
@nikhilyadav6582 2 ай бұрын
I like how you're targetting all coding platforms, just sort them in a playlist too for the ease of it 👍🏻
@GuilhermeNunes-ss6hk
@GuilhermeNunes-ss6hk 2 ай бұрын
Thanks for the explanation. I've got stuck with this * k operation
@nandomax3
@nandomax3 3 ай бұрын
That's the worst hackerrank exercise i ever did. Zero coding, zero algorithm. This shiuldnt be in hacker rank