10 Common Coding Interview Problems - Solved!

Поделиться
HTML-код
  • Опубликовано: 7 сен 2024

Комментарии • 359

  • @stefenleung
    @stefenleung 2 года назад +15

    I learned for those interview questions, the most important things is to ask the interviewer FOR ALL THE SPECIFIC DETAILS, whether u get a answer or not. Like the size of data, do we need to worry invalid data? what's the definition of anagram do white space count? etc
    For the "Kth largest element", you just need to save the largest kth numbers into a array while run through the number and compare it to the Kmin. If it's larger then Kmin, replace the Kmin, and so on.

  • @kikeoenr
    @kikeoenr 2 года назад +32

    3:19 For the anagram you can use 1 hash table but on the 2nd loop when you ask if the character of the second word is not on the table , return false.
    If it is on the table then rest 1 on that key.
    At the end ask if any value on the hash is not zero , return False.
    At last you can return True.

  • @Makwayne
    @Makwayne 2 года назад +47

    Rule for finding the middle element at 8:22
    There is a chance for overflow when we are adding to massive numbers so instead of dividing directly by 2 we do either of the 2 following approaches:
    1. left + (right-left)/2
    2. left + right >>> 1

    • @vekyll
      @vekyll 2 года назад +5

      Python's numbers are true numbers, not limited-size boxes. There is no chance of overflow.

    • @Makwayne
      @Makwayne 2 года назад +2

      @@vekyll you’re proving the point I made with another comment stating he shouldn’t use python but instead use Java. People reading that line of code would assume it’s the same for other languages and would end up committing the overflow error. I’ll say it again python is not verbose, it’s not good for explaining concepts.

    • @vekyll
      @vekyll 2 года назад +1

      @@Makwayne Well, it depends on the concepts, of course. If the concept is that addition is associative, Python is almost perfect. If the concept is that numbers are sometimes put in boxes of fixed size, then obviously it isn't. :-)

    • @fazoodle7972
      @fazoodle7972 2 года назад

      My professor taught it that way! Good point 👍

  • @ratnadeepbhattacharya1307
    @ratnadeepbhattacharya1307 2 года назад +22

    There is a faster method of solving for the Kth largest element. 1. We walk through the array and put elements into the max-heap only for i = 1 to k. 2. For i = k to N, where N = len(arr), we only add arr[i] to the max-heap if arr[i] > heap.peek(). We also have to pop one element to maintain the heap length to k. 3. Once we have completely walked through the array, we return the top element from the heap. Thus we construct a heap of only k elements and walk through the array once.

    • @soumyajitganguly2593
      @soumyajitganguly2593 2 года назад +1

      This would be O(n.log(k)) , there is an even faster O(n) solution that does not require any additional data structures - using quick select.

    • @adithyaravindra5596
      @adithyaravindra5596 2 года назад +1

      in python what if you do
      list.sort()
      return lis[-k]

    • @ohmegatech666
      @ohmegatech666 Год назад

      @@adithyaravindra5596 Yeah but this modifies the original list which is usually bad. I prefer:
      sorted_arr = sorted(arr)
      return sorted_arr[-k]

  • @ismaelgoldsteck5974
    @ismaelgoldsteck5974 2 года назад +23

    The memory complexity of the first one can be further reduced by using a single hash map. The first word increments the values, the second one decrements. After that only 0 must exist as a value in the hash map

    • @PKperformanceEU
      @PKperformanceEU Год назад +2

      I was thinking about the same too!

    • @BigAlCodes
      @BigAlCodes 9 месяцев назад

      Its funny how many problems can be made more efficient with a hashmap

  • @Madinko12
    @Madinko12 Год назад +8

    I find a lot of comments discussing about more optimized solutions and that's interesting, but I feel alone finding that most of these problems are very tricky to get right. I'm 100% sure that I'd fail most of them in an interview (provided that I haven't been exposed to that exact problem beforehand). It just feels like you really need that one completely unobivous trick that some genius discovered 80 years ago and probably wrote a PhD about. I feel so dumb and this video just makes me feel bad about myself honestly. I don't unerstand why companies ask such questions in interviews because they're completely unnecessary for whatever job you intend to apply to.

    • @epiram
      @epiram 6 месяцев назад +2

      its okay no one knows what they are doing just keep going and before you realize it you'll also be posting more optimized solutions

  • @AndrewErwin73
    @AndrewErwin73 2 года назад +37

    I have been a developer for more than 20 years. In the last 10 (or less) of that, I have seen a lot of "interview questions" that are basically just "show you know algorithms". What I have not seen much at all are real world examples of how these are used. For example, show me a website on the internet where the developer needed to understand how to solve the anagram problem?

    • @AndrewErwin73
      @AndrewErwin73 2 года назад +5

      Don't get me wrong... I undesrand as well as anyone (and better than most) that programming is first and foremost about problem solving. And I love the idea of algorithms, which classically is simply breaking down a problem into individual steps. But creating such specific questions (problems) that require such specific solutions doesn't really test an applicants problem solving skills as much as it does their participation in certain bootcamps. I really believe this is all realted to the massive profits seens by bootcamps as corellation with the massive turnover at FANG, et al companies. It's pretty obvious.

    • @vivekmit06
      @vivekmit06 2 года назад +8

      Website itself works based on graph algorithms.
      How DOM was parsed using HTML parser? (Traversal algorithms - DFS, BFS)
      How Database indexing works ? (Binary Search Tree)
      How identity columns was generated ? How Google Map works? (Random number algorithm)
      How files/folder ordering works in desktop? (sorting)
      How browser history was stored in the browser ? (stack)
      Can you show us any application which doesn't use algorithms ?

    • @Basta11
      @Basta11 2 года назад +1

      You may not need to solve an anagram, but you need to know when and how to use a frequency counter.
      You don’t calculate the big O of every piece of code, but it helps to know that some solutions are blazingly faster than others, some solutions are way more space efficient. Time and storage cost money after all.

  • @bzboii
    @bzboii 2 года назад +20

    3:10 Instead of making 2 maps and comparing (which is actually O(a) size where a is the size of the alphabet which even you mentioned could be huge) instead make the first map, then for the second string decrement the original map and if any value goes below 0 then return false (guaranteed they’re the same size so this also guarantees completeness).

    • @t-man9680
      @t-man9680 2 года назад +1

      What if the first string has more occurrences of a certain character? For example, if s1 = "aa" and s2 = "ab", the function returns true because the key "a" ends up with a positive value.

    • @abhi9988
      @abhi9988 2 года назад +1

      Guess you’d check to make sure all the values are exactly 0 then

    • @bzboii
      @bzboii 2 года назад +3

      @@t-man9680 good question.
      Let's work the example.
      If string one was 'aa' then the map would look like {'a':2} after the "adding phase".
      Now we move on to string two which is 'ab'. We see that there's 'a' and decrement so now the map looks like this {'a':1}
      Now we have 'b' and decrement so the map looks like {'a':1, 'b':-1} and return false because we have a negative value (or semantically you could say that there wasn't a value for 'b' greater than 0)
      Therefore this works.
      Because the lengths are guaranteed to be the same and my method is essentially checking if there are at least as many of a given character in string 2 as in string 1 (and vv) then we can conclude that it's checking if there are exactly as many occurrences in s2 as in s1 qed.
      Definitely do not iterate the whole map, that's the entire point on this improvement. If the alphabet is large then this wouldn't even be O(n).
      For example, the Unicode alphabet. We would have to check millions of characters even if our strings are 100 characters.

    • @bzboii
      @bzboii 2 года назад +1

      @@abhi9988 not necessary. And definitely do not iterate the entire map. See my reply to the comment.

    • @mephi5t0
      @mephi5t0 2 года назад

      @@bzboii we do not decrement anything we quit. If second string has character that is not in the first map you exit because it cannot be anagram. there is no need to check for 0. You either quit when one goes below 0 (extra char) or it is not found. There could be no other way because strings should be checked for equal length. Once you get to end of the loop - they are both anagram because you didn't return earlier.

  • @vobieta
    @vobieta 2 года назад +3

    For the third problem, with the parethesis,
    You may produce all valid parenthesis using the Catalan recursion.

  • @dreamerLevel
    @dreamerLevel 2 года назад +71

    Just like everytime , High quality content for free . ❤️

    • @zikriyurichevfathin7294
      @zikriyurichevfathin7294 2 года назад

      @@waruniadithya2630 terimakasi

    • @sauravkumar3278
      @sauravkumar3278 2 года назад

      You paid for device and internet connection
      So not free..

    • @carlos144
      @carlos144 2 года назад

      @@sauravkumar3278 go to a library then...

    • @orangesnowman7137
      @orangesnowman7137 2 года назад

      @@carlos144 You paid for the food which gave you the energy to walk so not free 😏

    • @kaustubh_ramteke_07
      @kaustubh_ramteke_07 Год назад +1

      @@orangesnowman7137 you were raised by your parents which costs a lot; so its not free

  • @sinagh9292
    @sinagh9292 2 года назад +1

    The last problem in "heights" array there is an extra 10 in list at index 10 after 9, comapred with the histogram.

  • @ohmegatech666
    @ohmegatech666 Год назад

    If anyone was very confused at what he was saying at 31:40, it sounds like he's saying "Here, we darkly backtrack" but he's actually saying "Here, we *directly* backtrack. Also a lot of the time, it sounds like he's saying "can" when he's actually saying "can't" so watch out for that.

  • @linyerin
    @linyerin 2 года назад +3

    Wow, python has so many powerful built-in methods that make algorithm problems much easier, but I am not a python expert and I don't remember many methods in pythons... Still glad python makes the life easier for many people.

  • @DhirajPatra
    @DhirajPatra Год назад +1

    Sound of this tutorial is not clear to understand. However the topics are clearly explained. Thanks

  • @axbn2190
    @axbn2190 2 года назад +31

    Just a note on the 'valid anagram' problem -- if you're going to use python sorted() function to compare strings you'll need to lowercase them first. Otherwise 'danger' and 'gArden' won't be considered anagrams. Sorting for that problem was not the most efficient solution, but it's good to be aware of the gotchas!

    • @lukenothere1252
      @lukenothere1252 2 года назад +3

      That’s not the same problem.

    • @SkillUpMobileGaming
      @SkillUpMobileGaming 2 года назад +8

      @@lukenothere1252 That's exactly the same problem. You clearly learned nothing.

    • @mdmahmoodbinhabib851
      @mdmahmoodbinhabib851 2 года назад +2

      The solution provided was case sensitive in mind.

    • @linyerin
      @linyerin 2 года назад

      I think not only Python, but for example Arrays.sort() in Java also needs to deal with the case-sensitive stuff.

    • @fahri343
      @fahri343 Год назад

      Then what's the optimal solution?

  • @valentino8625
    @valentino8625 2 года назад

    at 1:03 my anagram checker solution
    def are_anagram(s1,s2):
    if len(s1) != len(s2) or set(s1) != set(s2):
    return False
    else:
    return Truetemplate = 'garden'
    checker = 'danger'
    anagram_check(template,checker)

  • @orsimhon133
    @orsimhon133 Год назад +1

    In the Kth permutation problem 1:07:40
    The time complexity of the first solution is not O(n!) ?
    You said it is O(n * n!) but the time complexity of itertools.permutations(range(1, n + 1)) is O(n!)
    Thanks!

  • @waqarahmed4200
    @waqarahmed4200 6 месяцев назад

    For "First & Last Index of a Target num in sorted Array" (single loop)
    a = [2,4,5,5,5,5,5,7,9,9]
    def get_start_and_end(target):
    start,end = None,None
    for i in range(0,len(a)):
    if start == None and a[i] == target:
    start = i
    elif a[i] == target:
    end = i
    return start,end

  • @tan_0562
    @tan_0562 2 года назад +7

    Started coding 3 years ago since i was 9 still learning a lot of things from this channel its a blessing that this channel actualy exists

    • @UndeadSoldierE
      @UndeadSoldierE 2 года назад +5

      you gonna be the 20 years old dude with 12 years of experience XDDD

  • @danak5958
    @danak5958 Год назад +1

    Thank you for this video and all your effort.
    About the course schedule question: for the DFS solution to maintain the ‘order’ list is unnecessary as we never actually use it or use if for any condition.
    Also, for the BFS solution instead of maintaining list of order, cheaper to use a counter to count how many items were popped from the queue.
    Your solution works better if you need to return the order.
    Thanks again!

  • @eduardopa
    @eduardopa 2 года назад +1

    Finding the Kth largest/smallest element can be done in O(n) time with QuickSelect (en.wikipedia.org/wiki/Quickselect).
    Tl;dr on the wikipedia description: You do Quicksort, without recursing on the side you aren't interested in.
    1 - Select a pivot at random
    2 - Put everything smaller than it to the left of the array, and everything larger than it to the right (reverse the logic if you're looking for Kth larger)
    3 - Put pivot in it's place
    4 - if pivot_idx == k, return pivot. Else, call recursively into the proper subarray to the left or right of pivot_idx
    There is a theoretical worst case of n^2 (when the array is already sorted and you always pick the smallest/largest element on the subarray), but it is in practice avoided by selecting the pivot at random.

    • @sammy-zo6sl
      @sammy-zo6sl 2 года назад +1

      On average it is O(n) but worst case is O(n^2)

  • @mehrannassiry482
    @mehrannassiry482 2 года назад +3

    Hi, I am a beginner in Python but I think the second problem has a very simple solution only in 5 lines.:
    def find_first_last(arr, tar):
    l2 = []
    for index, num in enumerate(l):
    if num == tar:
    l2.append(index)
    return [l2[0], l2[-1]]
    l = [2, 4, 5, 5, 5, 5, 5, 7, 9, 9]
    print(find_first_last(l, 5))

    • @nithin2743
      @nithin2743 2 года назад +1

      He's only making sure to not have more iterations than necessary, in the first solution. Time complexity comes in to play when there's a huge amount of data to go through. For example, if we have an array of 1 million elements and our solution lies within the first 100, we'd have iterated 9,99,900 times unnecessarily.
      In his optimized approach he makes use of binary search which has a logarithmic time complexity.

    • @dimejimudele7254
      @dimejimudele7254 2 года назад +1

      You will need more space for this solution. Imagine a case where all your array elements are equal to the target. You will be storing O(n) indices in memory.
      His own solution is O(1).

    • @daktarisunfire4539
      @daktarisunfire4539 2 года назад

      Maybe this will work I guess
      def first_and_last(arr,target):
      mylist=[]
      for i in range(0,len(arr)):
      if arr[i] == target:
      mylist.append(i)
      else:
      print([-1,-1])
      print([mylist[0],mylist[-1]])

  • @Makwayne
    @Makwayne 2 года назад +12

    18:58 In the Kth largest
    Instead of putting all the elements into the heap, make a min heap (not max heap, for the Kth largest) and put a check inside the loop which is going over all the elements to be put into the loop. The check would limit the size of the PQ to 'K' elements, something like if(pq.size() > k) pq.poll(). Once we are through with the loop, we will have our kth largest element on top of the PQ, so simple return pq.peek();

    • @insidecode
      @insidecode 2 года назад +1

      I think it works yes

  • @AfgAlpha
    @AfgAlpha Год назад +5

    There is actually an error at 4:27. "nameless" and "salesman" are NOT anagrams. because the later one does not have two times the character "e" as it shown on the slide

  • @deepvasoya3648
    @deepvasoya3648 Год назад

    3:30 this code can be reduced more like this:
    def sol(s, ss):
    if len(s) != len(ss):
    return False
    d = dict()
    for i in range(len(s)):
    if s[i] not in d:
    d[s[i]] = 1
    else:
    d[s[i]] += 1
    for i in ss:
    if i in d and d[i] > 0:
    d[i] -= 1
    else:
    return False
    return True
    s = "garden"
    ss = "danger"
    print(sol(s, ss))

  • @theparrot271
    @theparrot271 2 года назад +6

    At 11:29, would it make more sense to set the initial left value to the value found in the find_start method? Although it wouldn't change the time complexity, I think it would result in, on average, one less operation done by the find_end binary search.

  • @raintech7053
    @raintech7053 2 года назад

    You can loop through the array from beginning ,find your target break from the array and then record it index number, Then do the same from back in another loop and break when target found .Since it's a sorted array this consume less time🙂🙂🙂

  • @filipenobrega6460
    @filipenobrega6460 2 года назад

    Question 1 has space order o(1) because it could only be as big as the alphabet, if you think 26 lowercase letters, even though `n` could be infinite.

  • @IldarSagdejev
    @IldarSagdejev Год назад

    For the anagram problem, count the occurrence of each character in string one. Then for each character of string two, reduce the occurrence count of that character if it's nonzero, otherwise exit with the conclusion that it's not an anagram.

  • @amaldev4150
    @amaldev4150 2 года назад +2

    Thanks a lot for your work. And also side note, you sound a lot like gru which is cute.

  • @thiagosoares5052
    @thiagosoares5052 2 года назад +1

    Good night! I live in Brazil I would like to say that your channel has content that others don't.

  • @robertotomas
    @robertotomas 2 года назад

    Nice coverage. Problem 5 presentation could be modified. You spend only about 4 seconds on the problem statement, before diving into definitions and sample code for several minutes.

  • @Dom-zy1qy
    @Dom-zy1qy 2 года назад

    For the first one, you can just do:
    def validAnagram(s1, s2):
    return Counter(s1) == Counter(s2)

    • @vinylSummer
      @vinylSummer 11 месяцев назад

      That was mentioned in the video

  • @__hannibaal__
    @__hannibaal__ 2 года назад

    For parentheses is
    Enter parentheses string s
    Char * c = s;
    Int n=0;
    Do {
    If *c==‘(‘ than n+=1;
    If *c==‘)’ than n+=-1;
    }while( *c++ != ‘\0’)
    Analyse your result if (-, 0 , +)

  • @I_Love_Water
    @I_Love_Water Год назад

    For the gas station:
    I looked at the assignment and got this:
    Python:
    def find_starting_station(gas, cost):
    n = len(gas)
    current_gas = 0
    starting_point = 0
    for i in range(n):
    current_gas += gas[i]
    current_gas -= cost[i]
    if current_gas < 0:
    starting_point = i + 1
    current_gas = 0
    for i in range(starting_point):
    current_gas += gas[i]
    current_gas -= cost[i]
    if current_gas < 0:
    return -1
    return starting_point
    --This function takes in two lists: one for the gas at each station, and one for the cost to travel to the next station.
    It starts by initializing the current_gas and the starting_point to 0.
    Then it iterates through the list of gas stations, adding the gas at each station to current_gas, and subtracting the cost to travel to the next station.
    If at any point the current_gas becomes negative, it means it is not possible to traverse all the stations from that starting point, so it sets the starting point to the next index and resets current_gas to 0.
    After the first iteration, it checks again from the starting_point.
    If at any point current_gas becomes negative, it returns -1, otherwise it returns the starting_point index. --
    Is this correct?

    • @I_Love_Water
      @I_Love_Water Год назад

      Probaly not but i just tryed it without really watching the assignment.

  • @Makwayne
    @Makwayne 2 года назад +3

    ARE YOU KIDDING ME
    I HAVE AN INTERVIEW IN THREE DAYS AND YOU DROPPED THIS BOMB
    NUKE ME FREECODECAMPDADDY

  • @whiletruekill
    @whiletruekill Год назад +2

    this speaker is an imposition for my ears

    • @whiletruekill
      @whiletruekill Год назад +1

      moreover, learn to pronounce the words "even, inclusive, exclusive" & more correctly.

  • @kimstuart7989
    @kimstuart7989 2 года назад

    question for kth largest element:
    We can assume that in the worst case, the kth largest element would be the len(arr)th element. so in the example where arr = [4, 2, 9, 7, 5, 6, 7, 1, 3], you could call for the 9th largest element, which would be the minimum element, which by the solution, you would have to essentially either use len(arr) if either starting from len(arr) - k or from i in range(len(arr)). So could we not assume that in the worst case, k = n and say that the solution 1 would operate in n^2 time since we are characterizing the worst case? or would we technically say that the time complexity is O(kn), with the caveat that k could = n?

  • @darling4316
    @darling4316 2 года назад +2

    This is amazing I just started applying

  • @yakovkemer5062
    @yakovkemer5062 2 года назад +1

    Thank you so much. As always - clear, easy to understand, useful.

  • @rostik_9999
    @rostik_9999 3 дня назад

    Such a nice one

  • @TheJuanuy1985
    @TheJuanuy1985 2 года назад

    Here for the second question another solution (javascript) and some unit tests:
    ```
    function binarySearch(num, array) {
    let begin = 0;
    let end = array.length;
    let m = Math.floor((begin + end) / 2);
    while(begin != m) {
    if (array[m] > num) {
    end = m;
    } else if (array[m] < num) {
    begin = m;
    } else {
    return m;
    }
    m = Math.floor((begin + end) / 2);
    }
    return m;
    }
    function findFirstAndLastIndex(num, array) {
    let index1 = binarySearch(num - 1, array);
    let index2 = binarySearch(num + 1, array);
    if (array[index1] < num) {
    index1++;
    }
    if (array[index2] > num) {
    index2--;
    }
    if (array[index1] != num) {
    return [-1, -1]
    }
    return [index1, index2];
    }
    const arr1 = [1, 2, 3, 3, 5, 5, 5, 5, 5, 6, 7];
    console.log(findFirstAndLastIndex(5, arr1));
    const arr2 = [5, 5, 5, 5, 5, 6, 7];
    console.log(findFirstAndLastIndex(5, arr2));
    const arr3 = [1, 2, 3, 5, 5, 5, 5, 5];
    console.log(findFirstAndLastIndex(5, arr3));
    const arr4 = [5, 5, 5, 5, 5];
    console.log(findFirstAndLastIndex(5, arr4));
    const arr5 = [5];
    console.log(findFirstAndLastIndex(5, arr5));
    const arr6 = [1, 5, 6];
    console.log(findFirstAndLastIndex(5, arr6));
    const arr7 = [1, 2, 3, 3, 5, 5, 5, 5, 5, 6, 7];
    console.log(findFirstAndLastIndex(8, arr7));
    const arr8 = [1, 2, 2, 2, 6, 6, 6, 6, 6, 6, 7];
    console.log(findFirstAndLastIndex(5, arr8));
    ```

  • @Btc314btc
    @Btc314btc Год назад +1

    Thank you for this content!

  • @jayantasamaddar1446
    @jayantasamaddar1446 2 года назад +1

    4:25 - I'm sorry, nameless and salesman are not anagrams.
    sMap: Map(6) { 'n' => 1, 'a' => 1, 'm' => 1, 'e' => 2, 'l' => 1, 's' => 2 }, // for nameless
    tMap: Map(6) { 's' => 2, 'a' => 2, 'l' => 1, 'e' => 1, 'm' => 1, 'n' => 1 } // for salesman

  • @txmerity
    @txmerity Год назад

    I think I have a faster way of solving the anagram:
    def findAnagram(word1, word2):
    for i in word1:
    if i in [*word2] and len(word1) == len(word2):
    pass
    else:
    return False
    return True
    a = findAnagram("garden", "danger")
    print(a)

    • @SagarBorseTheGeek
      @SagarBorseTheGeek Год назад

      it won't work for input where there is a repetition of chars Ex. AAB, ABB.
      your logic would return valid however, it won't be correct.

  • @jiganeshpatil1472
    @jiganeshpatil1472 2 года назад +4

    Make more of these videos💯💯

  • @JohnTosun
    @JohnTosun Год назад

    Second Problem:
    instead of nesting loops
    step 1: binary search for left
    step 2: binary search for right
    step 3: return low and high

  • @fengliu975
    @fengliu975 2 года назад

    Actually for first problem starting from python 2.7 at least you can just do freq1 == freq2 and equality will do the job for you

  • @learnwithaaraya1902
    @learnwithaaraya1902 2 года назад +1

    this just sooo... good ,i just wanted this thanks so much

  • @anonymous102592
    @anonymous102592 3 месяца назад

    thanks , you saved my day

  • @duthegee
    @duthegee 2 года назад +1

    I have one in 3 hours and you guys posted this just in time! haha

  • @mj-lc9db
    @mj-lc9db 10 месяцев назад

    for the first one u can just do a
    return freq1 == freq2

  • @CodingInterviewTV
    @CodingInterviewTV 8 месяцев назад

    It's crazy that people can just use apps like Coding Interview Champ to solve these LeetCode interview problems during the coding interview

  • @muhammadzahir946
    @muhammadzahir946 Год назад

    Challenge2 kth largest element shld be 5.since 7 repeats itself. Correct me if I am wrong

  • @vekyll
    @vekyll 2 года назад +2

    51:05 wrong. 5 shouldn't come before 4.

  • @ketanbhailikar5888
    @ketanbhailikar5888 2 года назад +1

    Wow! Can't believe the timing 😮

    • @wotizit
      @wotizit 5 месяцев назад

      Did you get in?

  • @prashantsakre6577
    @prashantsakre6577 2 года назад +1

    This is really great video. I am hopping similar content with different problems in the future also

    • @insidecode
      @insidecode 2 года назад +1

      Hey! I have a whole playlist on coding problems, you can check it: ruclips.net/p/PL3edoBgC7ScW_CBHbMc0FtdXfzgpBOGIb

    • @prashantsakre6577
      @prashantsakre6577 2 года назад +1

      @@insidecode thank you so much ✌️

  • @Buckflash
    @Buckflash 2 года назад +8

    Once again, completely out of my range of knowledge

  • @ricardoantonietto9330
    @ricardoantonietto9330 Год назад +1

    For the first exercise, don't you think it's way easier to convert the strings do an ordered list and check if they're the same?

    • @Ctrl-Alt-Bruno
      @Ctrl-Alt-Bruno 11 месяцев назад

      It works but it isn’t cost effective.

  • @alexandersage967
    @alexandersage967 Год назад

    really appreciated this. the course pre-requisite problem is not how courses work. if a course has two prerequisites, then both of those need to come first.

  • @RudolfKlusal
    @RudolfKlusal 2 года назад

    That anagram stuff -- why not, but much simplier (in Python anyways) is just sort alphabetically both strings and compare them. If they are anagrams, sorted strings would be same.

    • @thugsmf
      @thugsmf 2 года назад +2

      You probably know this already. Sorting has a bigger O complexity. O (n log (n) ). When you create a hash, you sacrifice space O(n); but you improve time complexity to Big O(n)

    • @RudolfKlusal
      @RudolfKlusal 2 года назад

      @@thugsmf True (y) 🙂

  • @koviroli
    @koviroli 2 года назад

    [Symmetric tree]26:10: I don't clearly understand why space complexity is O(n log n)? I have implemented your solution is C# by the way.

    • @HurricaneJamesEsq
      @HurricaneJamesEsq 2 года назад

      The speaker says O(log n), which is smaller than O(n * log n). This is because we much consider the data the program puts on the stack as we enter each level of recursion. In this case, every time we check if the left and right sub trees are mirrors, we add a frame to the stack. We do this all the way down the tree.

      However, the speaker made a minor mistake. They claim that symmetric trees must be balanced binary trees. Balanced binary trees are defined as a binary tre where the height of the left and right subtrees, for every node in the tree, cannot differ by more than 1. Therefore, the height of the a balanced binary tree must be O(log(n)).
      The mistake is that symmetric trees do not need to be balanced binary trees. A symmetric tree height can be up to n/2 when the left subtree has all left nodes and the right subtree has all right nodes. Thus, the space complexity is O(n).
      Example:
      ```
      1
      2 3
      4 5
      6 7
      8 9
      ```
      In this type of structure:
      ```
      n height log(n) n/2
      9 5 3.17 4.5
      11 6 3.45 5.5
      13 7 3.7 6.5
      ```
      As we can see, the height of the tree, and thus the number of frames on the stack, scale with O(n/2), which we write as O(n).

  • @fazoodle7972
    @fazoodle7972 2 года назад

    Sorting then comparing is genius for anagrams! So ez n fast bb how we like it 👌

  • @ohmegatech666
    @ohmegatech666 Год назад

    thank you, these are useful examples. For next time I would appreciate it if you made an effort to try to enunciate your words more clearly or at least write out captions, as it's difficult to understand what you're saying much of the time and the auto caption tool doesn't seem to fare much better

  • @famousbadger3801
    @famousbadger3801 Год назад

    This video serves 2 purposes - you can learn from it, and it can be a bed time story on the Calm app. Great material, but maybe next time have a coffee before you record

  • @sergekamga4512
    @sergekamga4512 2 года назад

    Definitely doing this

  • @ME-oe9gq
    @ME-oe9gq 2 года назад +1

    Making my life better 👍❤️

  • @thefizzshow
    @thefizzshow 2 года назад

    Thanks for the video....It helped a lot !!

  • @roblatour3511
    @roblatour3511 2 года назад +1

    the answer to 1 is way too complicated. better answer imo: if (a b) andalso (sort(a) = sort(b)) ... sort( sorts a string so each character in the string is placed in alphabetical order ).
    the answer to 5 is again too complicated - but you have the idea. to improve rather than use stacks just +1 to total for "(" and -1 to total for "(", the rest is more or less the same, if total ever goes below zero its invalid, total must = 0 in the end.

    • @mattnic001
      @mattnic001 2 года назад +4

      Its not about whether or not the solutions are complicated or simple... it's about getting time complexity and space complexity as optimal as possible and sometimes getting to that means having a more "complicated" solution. Your solution might be simpler but it doesn't necessary mean it's optimal.
      Also your solution to the first one is already one of the solutions given in the video itself

    • @insidecode
      @insidecode 2 года назад +2

      Hello, just keep watching the video, both solutions you mentioned are explained just after the "complicated" ones!

    • @roblatour3511
      @roblatour3511 2 года назад

      @@insidecode Sorry I clearly jumped the gun. At 2:02 I heard 'the best structure for our problem is the hash tables' so I just moved on. The same with 5 when talk was of pushing and popping.

    • @roblatour3511
      @roblatour3511 2 года назад

      @@mattnic001 perhaps, but the best solution imo is always the simplest to understand assuming performance is not unduly impacted.

    • @YeetYeetYe
      @YeetYeetYe 2 года назад

      @@roblatour3511 It really is a balancing act. In most situations, I agree.. easy to understand is better, as your code is going to be read by others in a professional environment. There are cases though, where less easy to understand solutions are better, if they provide better performance. Amazon for example, has plenty of teams that deal with code that requires handling millions of requests per second.. at that level, performance is key.

  • @khalidelgazzar
    @khalidelgazzar 2 года назад +1

    Great vidéo. Thank you

  • @ahmedjaved7197
    @ahmedjaved7197 2 года назад

    In Python we can simply sort both strings and compare them using comparison operator.

    • @Gazeld
      @Gazeld 2 года назад

      ...which is the same he already proposed... And in Python only? Of course not! Just watch actually the video before writing a useless comment.

    • @ahmedjaved7197
      @ahmedjaved7197 2 года назад

      @@Gazeld boy you must have alot of useless time to reply to useless comment 😅

  • @thecringequeen31
    @thecringequeen31 Год назад

    if set(word_1.strip()) == set(word_2.strip()):
    print("anagram")
    else:
    print("not anagram")

  • @mahendranath2504
    @mahendranath2504 2 года назад +1

    Thank you so much 👍🏼🎉⭐🙏❤️

  • @llekann
    @llekann 2 года назад

    This was very helpful. Thanks.

  • @brunosilva-ed4pz
    @brunosilva-ed4pz 2 года назад +51

    Well, i'm glad i dont live in the US cause i wouldn't be able to come up with 99% of these optimized solutions ;/

    • @insidecode
      @insidecode 2 года назад +9

      It comes with practice

    • @oualidlaib5965
      @oualidlaib5965 2 года назад

      Did you find a way bro to become good in problem solving ?
      If it is help me bro or give me some tips .

    • @moritzwagner4332
      @moritzwagner4332 2 года назад +4

      Bruh Im in Spain and we also do these interviews.

  • @hi_its_jodie
    @hi_its_jodie 2 года назад

    much more elgant solution to problem 1 is to sort both strings into alphabetical order and see if they're equivalent

    • @killianward9127
      @killianward9127 2 года назад

      It's not as fast though, because sorting is at best O(n logn) whereas counting each letter is O(n)

  • @ohmegatech666
    @ohmegatech666 Год назад

    For the parenthesis you could also just do this:
    -if it's got an odd length or it starts with ')', return false
    -else, if the count of '(' == count of ')', return true, else return false

  • @dademiller3124
    @dademiller3124 2 года назад

    thanks for this free content but the subtitles are bad and the accent too. I didn't get why space complexity is O(1) since the array is not a costant but a function parameter. thank you very much

  • @shid.account7629
    @shid.account7629 2 года назад

    fantastic slides!

  • @gao2737
    @gao2737 Год назад

    For the last solution of the last question, the time complexity is O(n)? It is not O(n^2)?

  • @minilek
    @minilek 2 года назад

    Your are_anagrams code seems incorrect at 4:10, in particular if freq2 has a key that's not in freq1 (consider s1='a' and s2='ab').

  • @yasinmohammadi8
    @yasinmohammadi8 2 года назад +1

    That's really useful thanks

  • @chrisallen1745
    @chrisallen1745 2 года назад +2

    Easy JS solution for number 1
    function firstAndLastIndex (arr, target) {
    return `${arr.indexOf(target)} ${arr.lastIndexOf(target)}`
    }
    I'm lost after that. Long ways to go I guess!

    • @insidecode
      @insidecode 2 года назад +1

      The solution works but it gives an O(n) time complexity, which is not the best for this problem

  • @tempusmagia486
    @tempusmagia486 2 года назад

    13:19 wouldn't the space complexity be O(n)? because in the part of the first and last element function you are looping the variable "mid"

  • @CTT36544
    @CTT36544 Год назад

    Without time and space complexity limitations, most of these problems are so easy.

  • @peaceangell
    @peaceangell 2 года назад +1

    Great videos, thank you xxxxxx ❤❤❤❤❤

  • @mateuszsmendowski2677
    @mateuszsmendowski2677 2 года назад

    def task(arr, k):
    return heapq.nlargest(k, arr)[-1]

  • @ayoub7682
    @ayoub7682 2 года назад

    for the anagram i used only one loop , i worked with java but idea is declaring an int counter = 0
    and test if string n° 1 contains a character in string n°2 with charAt[i] if true counter++
    and in the end test again if string n°1 length is equal to the counter if true then the two words are anagram
    for (int i=0;i

    • @abubakarkhawaja6082
      @abubakarkhawaja6082 2 года назад

      its O(n^2) or O(nlogn), as "contains method" could be O n or O log n

    • @mephi5t0
      @mephi5t0 2 года назад

      contains is not free. so you have 2 nested loops.

    • @insidecode
      @insidecode 2 года назад

      @@mephi5t0 exactly

  • @NITINAGAM
    @NITINAGAM 2 года назад

    Problem Solution - 1 in Swift:
    func areAnagrams(s1: String, s2: String) -> Bool {
    if s1.count != s2.count { return false }
    var s1Frequency: [String: Int] = [:]
    var s2Frequency: [String: Int] = [:]
    for char in s1 {
    s1Frequency["\(char)", default: 0] += 1
    }
    for char in s2 {
    s2Frequency["\(char)", default: 0] += 1
    }
    for key in s1Frequency.keys {
    if s2Frequency.keys.contains(key) == false || s1Frequency[key] != s2Frequency[key] {
    return false
    }
    }
    return true
    }

  • @acephelps3687
    @acephelps3687 Год назад

    I would be so lucky if I’ll get one of this problems 😅

  • @rajeevpatel3732
    @rajeevpatel3732 2 года назад +2

    Sir please make more videos regards interviews 🔥🔥 these videos help us for preparing for interview 👍

    • @insidecode
      @insidecode 2 года назад

      I have a playlist on coding problems on my channel: ruclips.net/p/PL3edoBgC7ScW_CBHbMc0FtdXfzgpBOGIb

    • @Gazeld
      @Gazeld 2 года назад

      You mean videos for preparing interviews help you preparing interviews? Woohoo! Fantastic! :)))

  • @kylechoy2402
    @kylechoy2402 2 года назад

    For the anagram question, would it be possible to just add the total value of each string and compare them via ASCI value? If they're equal then they're an anagram if not then it's not (make all letters uppercase or lowercase first )?

    • @gauravsharma-ys7vx
      @gauravsharma-ys7vx 2 года назад

      I believe that will be inaccurate as you can have a character with higher ascii value which is equal to sum of the ascii values of other characters. So the two words will be different and you may still get the same total ascii value. I hope this answer's your question.

  • @tommckenna3927
    @tommckenna3927 Год назад

    There is a mistake at 9:57
    Index mid-1 and index mid+1 could access an index outside the array. This should be changed.

  • @kirand7457
    @kirand7457 2 года назад +5

    Tomorrow I have a interview wish me luck 🤞

  • @leonardoingallshernandez6052
    @leonardoingallshernandez6052 2 года назад

    Hi, i think i have a good solution to problem 2
    function first_last(arr, target){
    let start = 0;
    let final = 0;
    for(let x = 0;x

    • @shivaakrish
      @shivaakrish 2 года назад

      Better solution would be using binary search

  • @saplay3372
    @saplay3372 2 года назад +1

    Great sir

  • @ajax333221
    @ajax333221 2 года назад +1

    Haven't tested it but in the Symmetric tree problem (26:24), I think are_symmetric can only give True when going all the way down and finding two nodes that they both don't have children?, I think you are missing an elif with root1.val == root2.val then return True there?. Can someone confirm this?

    • @ohmegatech666
      @ohmegatech666 Год назад

      You would only need to go all the way to the bottom if you don't find a difference before then. Basically we're walking every possible branch in the tree until we hit a difference then we stop. You can't return True finally unless you know for sure that both tree halves are identically mirrored, and the only way to do that is to recursively walk through the whole tree but stop if you find an exception. So, there is a range of time complexity. The worst case is when the two actually are symmetric because you end up comparing every single node. Then the next worse is when the very bottom node is the only one that's different, then it gets better and better as the difference gets higher up the tree, until the best case where the top root node is different (or they're both null). If you watch the animation at 2:36 again I think it will click. There's nothing else you need to add

  • @harikrish07
    @harikrish07 Год назад

    Thank you thala

  • @arpitagrawal8530
    @arpitagrawal8530 Год назад

    Should one know the method from video or find it on his own ?

  • @loveUbleach4ever
    @loveUbleach4ever Год назад

    what if I compare string lengths and then compare the character in String 2 and then if count == len(s1) then its anagram, would it not be an anagram solution
    s1 = "danger"
    s2 = "garden"
    if len(s1) == len(s2):
    print("length is same so it can be anagram")
    count = 0
    for ch in s1:
    if ch in s2:
    count = count + 1
    if count == len(s1):
    print('Anagram string')
    else:
    print("Not anagram")