Coders Camp
Coders Camp
  • 352
  • 269 539

Відео

Swap Nodes in Pairs
Переглядів 29Місяць тому
#coderscamp
Excel Sheet Column Number | LeetCode 171 | Coders Camp
Переглядів 76Рік тому
#LeetCode #coderscamp #whiteboardexplanation Link to Problem: leetcode.com/problems/excel-sheet-column-number/ Code: www.coderscamp.tech/post/excel-sheet-column-number #LeetCode #coderscamp #whiteboardexplanation #whiteboardexplanation
Minimum Deletions to Make Character Frequencies Unique
Переглядів 3952 роки тому
Minimum Deletions to Make Character Frequencies Unique
Smallest String With A Given Numeric Value | LeetCode 1663 | Coders Camp
Переглядів 1892 роки тому
Smallest String With A Given Numeric Value | LeetCode 1663 | Coders Camp
Partition Labels | LeetCode 763 | Coders Camp
Переглядів 892 роки тому
Partition Labels | LeetCode 763 | Coders Camp
Champagne Tower | LeetCode 799 | Coders Camp
Переглядів 4152 роки тому
Champagne Tower | LeetCode 799 | Coders Camp
Compare Version Numbers | LeetCode 165 | Coders Camp
Переглядів 5302 роки тому
Compare Version Numbers | LeetCode 165 | Coders Camp
Excel Sheet Column Number | LeetCode 171 | Coders Camp
Переглядів 2302 роки тому
Excel Sheet Column Number | LeetCode 171 | Coders Camp
Merge Nodes in Between Zeros | LeetCode 2181 | Coders Camp
Переглядів 1,2 тис.2 роки тому
Merge Nodes in Between Zeros | LeetCode 2181 | Coders Camp
Combination Sum | LeetCode 39 | Coders Camp
Переглядів 1472 роки тому
Combination Sum | LeetCode 39 | Coders Camp
Swap Nodes in Pairs | LeetCode 24 | Coders Camp
Переглядів 1062 роки тому
Swap Nodes in Pairs | LeetCode 24 | Coders Camp
Subsets | LeetCode 78 | Coders Camp
Переглядів 702 роки тому
Subsets | LeetCode 78 | Coders Camp
Subarray Sum Equals K | LeetCode 560 | Coders Camp
Переглядів 2552 роки тому
Subarray Sum Equals K | LeetCode 560 | Coders Camp
K diff Pairs in an Array | LeetCode 532 | Coders Camp
Переглядів 3622 роки тому
K diff Pairs in an Array | LeetCode 532 | Coders Camp
Contiguous Array | LeetCode 525 | Coders Camp
Переглядів 802 роки тому
Contiguous Array | LeetCode 525 | Coders Camp
4Sum II | LeetCode 454 | Coders Camp
Переглядів 5982 роки тому
4Sum II | LeetCode 454 | Coders Camp
Design Add and Search Words Data Structure | LeetCode 211 | Coders Camp
Переглядів 1042 роки тому
Design Add and Search Words Data Structure | LeetCode 211 | Coders Camp
All Elements in Two Binary Search Trees | LeetCode 1305 | Coders Camp
Переглядів 1992 роки тому
All Elements in Two Binary Search Trees | LeetCode 1305 | Coders Camp
Linked List Cycle II | LeetCode 142 | Coders Camp
Переглядів 902 роки тому
Linked List Cycle II | LeetCode 142 | Coders Camp
Middle of the Linked List | LeetCode 876 | Coders Camp
Переглядів 692 роки тому
Middle of the Linked List | LeetCode 876 | Coders Camp
Merge Intervals | LeetCode 56 | Coders Camp
Переглядів 682 роки тому
Merge Intervals | LeetCode 56 | Coders Camp
Reorder List | LeetCode 143 | Coders Camp
Переглядів 1672 роки тому
Reorder List | LeetCode 143 | Coders Camp
Power of Two | LeetaCode 231 | Coders Camp
Переглядів 312 роки тому
Power of Two | LeetaCode 231 | Coders Camp
Minimum Absolute Difference | LeetCode 1200 | Coders Camp
Переглядів 5722 роки тому
Minimum Absolute Difference | LeetCode 1200 | Coders Camp
Decode String | LeetCode 394 | Coders Camp
Переглядів 1962 роки тому
Decode String | LeetCode 394 | Coders Camp
Numbers At Most N Given Digit Set | LeetCode 902 | Coders Camp
Переглядів 1,4 тис.2 роки тому
Numbers At Most N Given Digit Set | LeetCode 902 | Coders Camp
Maximal Square | LeetCode 221 | Coders Camp
Переглядів 652 роки тому
Maximal Square | LeetCode 221 | Coders Camp
Insertion Sort List | LeetCode 147 | Coders Camp
Переглядів 3602 роки тому
Insertion Sort List | LeetCode 147 | Coders Camp
Range Sum of BST | LeetCode 938 | Coders Camp
Переглядів 462 роки тому
Range Sum of BST | LeetCode 938 | Coders Camp

КОМЕНТАРІ

  • @vikramsinghl3037
    @vikramsinghl3037 3 дні тому

    You made a best video on youtube . I explore all the channel but your channel best😊

  • @klsjdflksjfd
    @klsjdflksjfd 5 днів тому

    Great solution and walkthrough. Thank you

  • @UdhyaKumar-z4d
    @UdhyaKumar-z4d 19 днів тому

    nice explaination.... i upload videos on how to identify what approach like sliding window , two pointer etc.

  • @coreversatilitybyuroojmalik172
    @coreversatilitybyuroojmalik172 27 днів тому

    Well explained

  • @thilakrajg
    @thilakrajg Місяць тому

    👌

  • @AnshulKotwal-r2o
    @AnshulKotwal-r2o 2 місяці тому

    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

  • @ganeshjaggineni4097
    @ganeshjaggineni4097 2 місяці тому

    NICE SUPER EXCELLENT MOTIVATED

  • @mdashrafulalam6510
    @mdashrafulalam6510 2 місяці тому

    Thank you

  • @gourabsingha1
    @gourabsingha1 2 місяці тому

    sunar explanation

  • @TUB_HUB
    @TUB_HUB 2 місяці тому

    mam you are the goat..!

  • @kaarimtareek
    @kaarimtareek 3 місяці тому

    well explained, thank you

  • @southparkep4091
    @southparkep4091 3 місяці тому

    nice

  • @RahulKumar-oq5oo
    @RahulKumar-oq5oo 3 місяці тому

    good clean, short explanation.

  • @mohammadyahya78
    @mohammadyahya78 3 місяці тому

    amazing!!

  • @inno6123
    @inno6123 3 місяці тому

    best explanation, other explanations in youtube should be deleted

  • @ganeshjaggineni4097
    @ganeshjaggineni4097 3 місяці тому

    NICE SUPER EXCELLENT MOTIVATED

  • @TheKirk1989
    @TheKirk1989 4 місяці тому

    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?

  • @AparajitaShinde
    @AparajitaShinde 4 місяці тому

    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.

    • @CodersCamp
      @CodersCamp Місяць тому

      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!

  • @bitsforbits6581
    @bitsforbits6581 4 місяці тому

    i dont understand why sorting?,,,,because ha harmonic subsequence is that in which order remains unchanged

  • @christinemello694
    @christinemello694 5 місяців тому

    You explained it brilliantly! This is the best explanation I found for this problem

  • @peaceikechukwu3976
    @peaceikechukwu3976 5 місяців тому

    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 !!♥

  • @aditigupta6870
    @aditigupta6870 6 місяців тому

    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?

  • @artikoppar
    @artikoppar 6 місяців тому

    How to run this build xml if you want to run more than 2/3 projects for getting 1 html report

    • @CodersCamp
      @CodersCamp Місяць тому

      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!

  • @ashishkothari2845
    @ashishkothari2845 6 місяців тому

    stack.pop().getInteger() how it works ???

  • @mohammadyahya78
    @mohammadyahya78 6 місяців тому

    wow what amazing expalantion for uick sort

  • @mohammadyahya78
    @mohammadyahya78 6 місяців тому

    amazing solution

  • @victormadu1635
    @victormadu1635 6 місяців тому

    Thank you!

  • @sabu4539
    @sabu4539 6 місяців тому

    thank you

  • @isbhakhalid1784
    @isbhakhalid1784 6 місяців тому

    Amazing Explanation👏👏

  • @abheermehrotra329
    @abheermehrotra329 7 місяців тому

    Best explanation , so simple.

  • @samridhshubham8109
    @samridhshubham8109 8 місяців тому

    Excellent, clean cut explanation

  • @easyvedicmaths886
    @easyvedicmaths886 8 місяців тому

    but why this is BFS and not dp?

    • @CodersCamp
      @CodersCamp Місяць тому

      You can solve using dp as well!

  • @AlexeiChebotarov-f7q
    @AlexeiChebotarov-f7q 8 місяців тому

    Thanks, very good explanation.

  • @easyvedicmaths886
    @easyvedicmaths886 8 місяців тому

    why we dont use a for loop by calcuting the size of queue and exploring all childs once?

  • @mikedelta658
    @mikedelta658 8 місяців тому

    I wasn't merely looking for the answer rather I was digging for a clear demonstration. Here it is. Thank you.

  • @omkaranabathula1979
    @omkaranabathula1979 8 місяців тому

    Great explanation, subscribed++

    • @CodersCamp
      @CodersCamp 7 місяців тому

      Awesome, thank you!

  • @AkashKumar-vy7zx
    @AkashKumar-vy7zx 8 місяців тому

    Best

  • @bhargavgadde7068
    @bhargavgadde7068 9 місяців тому

    if you use loop with in loop time complexitiy is not o(n) anymore

    • @aryancodes380
      @aryancodes380 Місяць тому

      Not actually the other loop doesn't runs till n

  • @rrrhitk
    @rrrhitk 9 місяців тому

    really the logic was good

  • @abudanish196
    @abudanish196 9 місяців тому

    This solution will not work in C++

  • @smitj5404
    @smitj5404 9 місяців тому

    great!!

  • @vanstrihaar
    @vanstrihaar 10 місяців тому

    Finally, understandable explanation (focused not on what to do but on why to do). Thank you.

    • @CodersCamp
      @CodersCamp 7 місяців тому

      Glad it was helpful!

  • @balreddya6604
    @balreddya6604 10 місяців тому

    Thanks alot for the solutions, this channel has awsome explanations.

  • @KeyAndLock77
    @KeyAndLock77 10 місяців тому

    computing isPalindrome for every node in Trie is going to be totally insane and assuming that itself is going to be of order O(n2)

  • @MykolaParamonov
    @MykolaParamonov 10 місяців тому

    Thank you very much for your explanation! I struggled for several hours to understand the related article in the Leetcode editorial but it was in vain. Then I found your video and got the idea after the first watch. So simple and clear explanation!

  • @nikhilkumarjamwal5322
    @nikhilkumarjamwal5322 11 місяців тому

    can you explain with dry run???

  • @JatinGupta-ze6nc
    @JatinGupta-ze6nc Рік тому

    line number 9 m a[] kya hai

  • @yeeeeetcode
    @yeeeeetcode Рік тому

    You are amazing

  • @michaelscott1899
    @michaelscott1899 Рік тому

    jordar

  • @tapassaha6113
    @tapassaha6113 Рік тому

    Clear explanation.