- 353
- 281 571
Coders Camp
India
เข้าร่วมเมื่อ 25 ธ.ค. 2020
Technical Blogging channels explores more on Data structures, Algorithms, Automation testing and related tools.
Github Copilot short series - refactoring and optimizing code using co-pilot
#coderscamp #githubcopilot #shortvideo #shorts
มุมมอง: 73
วีดีโอ
Excel Sheet Column Number | LeetCode 171 | Coders Camp
มุมมอง 78ปีที่แล้ว
Excel Sheet Column Number | LeetCode 171 | Coders Camp
Minimum Deletions to Make Character Frequencies Unique
มุมมอง 4042 ปีที่แล้ว
Minimum Deletions to Make Character Frequencies Unique
Smallest String With A Given Numeric Value | LeetCode 1663 | Coders Camp
มุมมอง 1942 ปีที่แล้ว
Smallest String With A Given Numeric Value | LeetCode 1663 | Coders Camp
Partition Labels | LeetCode 763 | Coders Camp
มุมมอง 932 ปีที่แล้ว
Partition Labels | LeetCode 763 | Coders Camp
Champagne Tower | LeetCode 799 | Coders Camp
มุมมอง 4202 ปีที่แล้ว
Champagne Tower | LeetCode 799 | Coders Camp
Compare Version Numbers | LeetCode 165 | Coders Camp
มุมมอง 5412 ปีที่แล้ว
Compare Version Numbers | LeetCode 165 | Coders Camp
Excel Sheet Column Number | LeetCode 171 | Coders Camp
มุมมอง 2422 ปีที่แล้ว
Excel Sheet Column Number | LeetCode 171 | Coders Camp
Merge Nodes in Between Zeros | LeetCode 2181 | Coders Camp
มุมมอง 1.3K2 ปีที่แล้ว
Merge Nodes in Between Zeros | LeetCode 2181 | Coders Camp
Combination Sum | LeetCode 39 | Coders Camp
มุมมอง 1602 ปีที่แล้ว
Combination Sum | LeetCode 39 | Coders Camp
Swap Nodes in Pairs | LeetCode 24 | Coders Camp
มุมมอง 1082 ปีที่แล้ว
Swap Nodes in Pairs | LeetCode 24 | Coders Camp
Subarray Sum Equals K | LeetCode 560 | Coders Camp
มุมมอง 2682 ปีที่แล้ว
Subarray Sum Equals K | LeetCode 560 | Coders Camp
K diff Pairs in an Array | LeetCode 532 | Coders Camp
มุมมอง 4582 ปีที่แล้ว
K diff Pairs in an Array | LeetCode 532 | Coders Camp
Contiguous Array | LeetCode 525 | Coders Camp
มุมมอง 832 ปีที่แล้ว
Contiguous Array | LeetCode 525 | Coders Camp
Design Add and Search Words Data Structure | LeetCode 211 | Coders Camp
มุมมอง 1053 ปีที่แล้ว
Design Add and Search Words Data Structure | LeetCode 211 | Coders Camp
All Elements in Two Binary Search Trees | LeetCode 1305 | Coders Camp
มุมมอง 2003 ปีที่แล้ว
All Elements in Two Binary Search Trees | LeetCode 1305 | Coders Camp
Linked List Cycle II | LeetCode 142 | Coders Camp
มุมมอง 933 ปีที่แล้ว
Linked List Cycle II | LeetCode 142 | Coders Camp
Middle of the Linked List | LeetCode 876 | Coders Camp
มุมมอง 703 ปีที่แล้ว
Middle of the Linked List | LeetCode 876 | Coders Camp
Merge Intervals | LeetCode 56 | Coders Camp
มุมมอง 693 ปีที่แล้ว
Merge Intervals | LeetCode 56 | Coders Camp
Reorder List | LeetCode 143 | Coders Camp
มุมมอง 1683 ปีที่แล้ว
Reorder List | LeetCode 143 | Coders Camp
Power of Two | LeetaCode 231 | Coders Camp
มุมมอง 323 ปีที่แล้ว
Power of Two | LeetaCode 231 | Coders Camp
Minimum Absolute Difference | LeetCode 1200 | Coders Camp
มุมมอง 5913 ปีที่แล้ว
Minimum Absolute Difference | LeetCode 1200 | Coders Camp
Decode String | LeetCode 394 | Coders Camp
มุมมอง 2083 ปีที่แล้ว
Decode String | LeetCode 394 | Coders Camp
Numbers At Most N Given Digit Set | LeetCode 902 | Coders Camp
มุมมอง 1.5K3 ปีที่แล้ว
Numbers At Most N Given Digit Set | LeetCode 902 | Coders Camp
Maximal Square | LeetCode 221 | Coders Camp
มุมมอง 703 ปีที่แล้ว
Maximal Square | LeetCode 221 | Coders Camp
Insertion Sort List | LeetCode 147 | Coders Camp
มุมมอง 4513 ปีที่แล้ว
Insertion Sort List | LeetCode 147 | Coders Camp
Range Sum of BST | LeetCode 938 | Coders Camp
มุมมอง 463 ปีที่แล้ว
Range Sum of BST | LeetCode 938 | Coders Camp
First solution is awesome 👍👍👍
Very nice explanation mam ❤
Wow , Superb explanation. Thank you
nice
I wont lie...normally I ignore videos in Indian accents (because generally they're rubbish)...but this was excellent. Well done and thanks.
This ain't an easy problem. But you explained it well Thanks!
How can we store 20/19 digit number in long?
Thanks! You gained a new subscriber.
can u pls give dry run for string QWERRRRR
thank you got it
Excellent explanation ,in some videos they are directly going to solution but u explained why behind it thanks for that . Its vey less I comment .
Only video on this problem that is straightforward and easy to understand, thank you
Glad it helped!
Thats one hell of a presentation and solution thank you
You made a best video on youtube . I explore all the channel but your channel best😊
Great solution and walkthrough. Thank you
Glad it helped!
nice explaination.... i upload videos on how to identify what approach like sliding window , two pointer etc.
Well explained
👌
you have written hight instead od right and ur code accepted wow i dont know how it happended but i should give u all right code class Solution { public int smallestDistancePair(int[] nums, int k) { Arrays.sort(nums); int left=0; int right=nums[nums.length-1]-nums[0]; while(left<right){ int mid=(left+right)/2; if(issmallpairs(nums,k,mid)) right=mid; else left=mid+1; } return left; } private boolean issmallpairs(int[] nums,int k,int mid){ int c=0; int left=0; for(int right=1;right<nums.length;right++){ while(nums[right]-nums[left]>mid) left++; c+=right-left; } return (c>=k); } } btw explanation was relly appreciating
NICE SUPER EXCELLENT MOTIVATED
Thanks a lot
Thank you
sunar explanation
mam you are the goat..!
well explained, thank you
Glad it was helpful!
nice
good clean, short explanation.
amazing!!
best explanation, other explanations in youtube should be deleted
NICE SUPER EXCELLENT MOTIVATED
dunno, why 12354 is permutated to 12435 ??? In the description of this task says "ADJACENT" only.. why 12354 > 12435 , how can we swap 3 and 4 in this case? It's not adjacent . 13254 maybee?
Very informative video. I have a question - On teamcity server, I have done soapui setup and reports are generated using ANT and groovy script as well. Can we integrate the generated reports results on teamcity and show the report results on teamcity? please share the details.
Haven't worked on teamcity. Hope you figured this out by now. And please share in Coders Camp blog if you got insights on this. Will be helpful for others too. Thanks!
i dont understand why sorting?,,,,because ha harmonic subsequence is that in which order remains unchanged
As you're going for counting approach both in sliding window or hash map, the sort doesn't matter anymore. It only matters the pair of any two numbers with diff 1, which count most. For ex [1, 3, 2, 3], here the pair of 2, 3 plays the role.
You explained it brilliantly! This is the best explanation I found for this problem
I had to go back to some basic mathematics on Sequences and series to understand the recurrence relations. This is great vid. Thanks for the work and time you put into this !!♥
Thank a lot
whats your approach basically? Its confusing little, are you going via the approach of having all permutations of single digits, then 2 digits, then if N itself is 3 digits then all perumtations from 100 till N?
How to run this build xml if you want to run more than 2/3 projects for getting 1 html report
Haven't explored it yet. Will share it definitely once I get it. Also if you ve figured it out by now, share it in coders Camp blog. Will be helpful for others too. Thanks!
stack.pop().getInteger() how it works ???
wow what amazing expalantion for uick sort
Glad it helped!
amazing solution
Thank you!
thank you
Amazing Explanation👏👏
Best explanation , so simple.
Glad you liked it
Excellent, clean cut explanation
Thank you!
but why this is BFS and not dp?
You can solve using dp as well!
Thanks, very good explanation.
why we dont use a for loop by calcuting the size of queue and exploring all childs once?
I wasn't merely looking for the answer rather I was digging for a clear demonstration. Here it is. Thank you.
Great explanation, subscribed++
Awesome, thank you!
Best