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.
@epiram9 ай бұрын
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
@stefenleung2 жыл бұрын
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.
@kikeoenr2 жыл бұрын
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.
@ratnadeepbhattacharya13072 жыл бұрын
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.
@soumyajitganguly25932 жыл бұрын
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.
@adithyaravindra55962 жыл бұрын
in python what if you do list.sort() return lis[-k]
@ohmegatech666 Жыл бұрын
@@adithyaravindra5596 Yeah but this modifies the original list which is usually bad. I prefer: sorted_arr = sorted(arr) return sorted_arr[-k]
@Makwayne2 жыл бұрын
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
@vekyll2 жыл бұрын
Python's numbers are true numbers, not limited-size boxes. There is no chance of overflow.
@Makwayne2 жыл бұрын
@@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.
@vekyll2 жыл бұрын
@@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. :-)
@fazoodle79722 жыл бұрын
My professor taught it that way! Good point 👍
@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.
@AndrewErwin732 жыл бұрын
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?
@AndrewErwin732 жыл бұрын
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.
@vivekmit062 жыл бұрын
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 ?
@Basta112 жыл бұрын
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.
@johnnyq42602 ай бұрын
@@vivekmit06 You don't get paid to know that stuff. You get paid to solve problems with business impact, and this involves far more than coding. If you can't do the latter well, nobody cares about your knowledge of stacks.
@bzboii2 жыл бұрын
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-man96802 жыл бұрын
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.
@abhi99882 жыл бұрын
Guess you’d check to make sure all the values are exactly 0 then
@bzboii2 жыл бұрын
@@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.
@bzboii2 жыл бұрын
@@abhi9988 not necessary. And definitely do not iterate the entire map. See my reply to the comment.
@mephi5t02 жыл бұрын
@@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.
@ismaelgoldsteck59742 жыл бұрын
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 Жыл бұрын
I was thinking about the same too!
@BigAlCodes11 ай бұрын
Its funny how many problems can be made more efficient with a hashmap
@waqarahmed42009 ай бұрын
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_05622 жыл бұрын
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
@UndeadSoldierE2 жыл бұрын
you gonna be the 20 years old dude with 12 years of experience XDDD
@vobieta2 жыл бұрын
For the third problem, with the parethesis, You may produce all valid parenthesis using the Catalan recursion.
@axbn21902 жыл бұрын
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!
@lukenothere12522 жыл бұрын
That’s not the same problem.
@SkillUpMobileGaming2 жыл бұрын
@@lukenothere1252 That's exactly the same problem. You clearly learned nothing.
@mdmahmoodbinhabib8512 жыл бұрын
The solution provided was case sensitive in mind.
@linyerin2 жыл бұрын
I think not only Python, but for example Arrays.sort() in Java also needs to deal with the case-sensitive stuff.
@fahri343 Жыл бұрын
Then what's the optimal solution?
@valentino86252 жыл бұрын
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)
@linyerin2 жыл бұрын
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.
@brahimmania556514 күн бұрын
For an anagram, I think it's very simple if we compare the two sorted strings.
@eduardopa2 жыл бұрын
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-zo6sl2 жыл бұрын
On average it is O(n) but worst case is O(n^2)
@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.
@deepvasoya36482 жыл бұрын
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))
@Makwayne2 жыл бұрын
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();
@insidecode2 жыл бұрын
I think it works yes
@sinagh92922 жыл бұрын
The last problem in "heights" array there is an extra 10 in list at index 10 after 9, comapred with the histogram.
@Dom-zy1qy2 жыл бұрын
For the first one, you can just do: def validAnagram(s1, s2): return Counter(s1) == Counter(s2)
@vinylSummer Жыл бұрын
That was mentioned in the video
@raintech70532 жыл бұрын
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🙂🙂🙂
@mehrannassiry4822 жыл бұрын
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))
@nithin27432 жыл бұрын
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.
@dimejimudele72542 жыл бұрын
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).
@daktarisunfire45392 жыл бұрын
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]])
@dreamerLevel2 жыл бұрын
Just like everytime , High quality content for free . ❤️
@zikriyurichevfathin72942 жыл бұрын
@@waruniadithya2630 terimakasi
@sauravkumar32782 жыл бұрын
You paid for device and internet connection So not free..
@carlos1442 жыл бұрын
@@sauravkumar3278 go to a library then...
@orangesnowman71372 жыл бұрын
@@carlos144 You paid for the food which gave you the energy to walk so not free 😏
@kaustubh_ramteke_07 Жыл бұрын
@@orangesnowman7137 you were raised by your parents which costs a lot; so its not free
@Denis_20096 Жыл бұрын
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?
@Denis_20096 Жыл бұрын
Probaly not but i just tryed it without really watching the assignment.
@filipenobrega64602 жыл бұрын
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.
@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
@NITINAGAM2 жыл бұрын
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 }
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 , +)
@AfgAlpha2 жыл бұрын
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
@brendakuekia2818 Жыл бұрын
salesmen* not salesman
@thiagosoares50522 жыл бұрын
Good night! I live in Brazil I would like to say that your channel has content that others don't.
@roblatour35112 жыл бұрын
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.
@mattnic0012 жыл бұрын
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
@insidecode2 жыл бұрын
Hello, just keep watching the video, both solutions you mentioned are explained just after the "complicated" ones!
@roblatour35112 жыл бұрын
@@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.
@roblatour35112 жыл бұрын
@@mattnic001 perhaps, but the best solution imo is always the simplest to understand assuming performance is not unduly impacted.
@YeetYeetYe2 жыл бұрын
@@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.
@DhirajPatra2 жыл бұрын
Sound of this tutorial is not clear to understand. However the topics are clearly explained. Thanks
@Makwayne2 жыл бұрын
ARE YOU KIDDING ME I HAVE AN INTERVIEW IN THREE DAYS AND YOU DROPPED THIS BOMB NUKE ME FREECODECAMPDADDY
@TheJuanuy19852 жыл бұрын
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)); ```
@hi_its_jodie2 жыл бұрын
much more elgant solution to problem 1 is to sort both strings into alphabetical order and see if they're equivalent
@killianward91272 жыл бұрын
It's not as fast though, because sorting is at best O(n logn) whereas counting each letter is O(n)
@brunosilva-ed4pz2 жыл бұрын
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 ;/
@insidecode2 жыл бұрын
It comes with practice
@oualidlaib59652 жыл бұрын
Did you find a way bro to become good in problem solving ? If it is help me bro or give me some tips .
@moritzwagner43322 жыл бұрын
Bruh Im in Spain and we also do these interviews.
@CodingInterviewTV11 ай бұрын
It's crazy that people can just use apps like Coding Interview Champ to solve these LeetCode interview problems during the coding interview
@kiddyboy15402 жыл бұрын
Solutions: Valid Anagram: 3:30 First & Last Index of a Target num in sorted Array: 7:23 Kth Largest Element in an array: 15:03
@ahmedjaved71972 жыл бұрын
In Python we can simply sort both strings and compare them using comparison operator.
@Gazeld2 жыл бұрын
...which is the same he already proposed... And in Python only? Of course not! Just watch actually the video before writing a useless comment.
@ahmedjaved71972 жыл бұрын
@@Gazeld boy you must have alot of useless time to reply to useless comment 😅
@duthegee2 жыл бұрын
I have one in 3 hours and you guys posted this just in time! haha
@txmerity2 жыл бұрын
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 Жыл бұрын
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.
@fazoodle79722 жыл бұрын
Sorting then comparing is genius for anagrams! So ez n fast bb how we like it 👌
@ketanbhailikar58882 жыл бұрын
Wow! Can't believe the timing 😮
@wotizit8 ай бұрын
Did you get in?
@kimstuart79892 жыл бұрын
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?
@CTT365442 жыл бұрын
Without time and space complexity limitations, most of these problems are so easy.
@mj-lc9db Жыл бұрын
for the first one u can just do a return freq1 == freq2
@RudolfKlusal2 жыл бұрын
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.
@thugsmf2 жыл бұрын
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)
@RudolfKlusal2 жыл бұрын
@@thugsmf True (y) 🙂
@prashantsakre65772 жыл бұрын
This is really great video. I am hopping similar content with different problems in the future also
@insidecode2 жыл бұрын
Hey! I have a whole playlist on coding problems, you can check it: kzbin.info/aero/PL3edoBgC7ScW_CBHbMc0FtdXfzgpBOGIb
@prashantsakre65772 жыл бұрын
@@insidecode thank you so much ✌️
@tushar__og2 жыл бұрын
Solution For 1st Question in Python: a = "danger" b = "garden" print(sorted(a) == sorted(b))
@Marcelo-yp9uz2 жыл бұрын
thats good but O(logN), but you can also do in O(N) with constant space by counting each character in each string and checking if the amount for each character is equal
@Gazeld2 жыл бұрын
Why do you put this solution that is already given in the video?
@tushar__og2 жыл бұрын
@@Gazeld It's just an alternate solution.
@yakovkemer50622 жыл бұрын
Thank you so much. As always - clear, easy to understand, useful.
@insidecode2 жыл бұрын
You're welcome!
@robertotomas2 жыл бұрын
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.
@amaldev41502 жыл бұрын
Thanks a lot for your work. And also side note, you sound a lot like gru which is cute.
@darling43162 жыл бұрын
This is amazing I just started applying
@theparrot2712 жыл бұрын
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.
@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.
@koviroli2 жыл бұрын
[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.
@HurricaneJamesEsq2 жыл бұрын
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).
@fengliu9752 жыл бұрын
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
@magesh10mano2 жыл бұрын
In 7:01, the code logic was wrong. It will fail if the target value is the last index value. Correct Code:- def first_last_pos(arr,target): print(len(arr)) for i in range (len(arr)): if arr[i] == target: print(arr[i]) start = i print(i) while i < (len(arr)-1) and arr[i+1] == target: i+=1 return [start,i] return [-1,-1]
@YitzhakDayan2 жыл бұрын
You have a mistake for the last one, the complexity is n^2 and can't be smaller, for the second solution you made a few errors calculating the complexity One error it is not n/2 since you don't know how the smallest element will split, for instance assume it is perfectly ascending then the second iteration just takes a vector size n-1, then n-2 and so on. Finally you get n+n-1+n-2+… which is n^2. It will actually be n^2 no matter the split if you do the math right it is just easier to see in this example. Further more you have a problem in the code it self - what if the smallest element repeats 5 times? You now have 6 regions to search so you have to take this into account...
@danak59582 жыл бұрын
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!
@learnwithaaraya19022 жыл бұрын
this just sooo... good ,i just wanted this thanks so much
@insidecode2 жыл бұрын
you're welcome!
@thecringequeen312 жыл бұрын
if set(word_1.strip()) == set(word_2.strip()): print("anagram") else: print("not anagram")
@WeightlessFlex2 жыл бұрын
number 1 is even easier, just sort the strings and then if the collections are equal they are anagrams
@Gazeld2 жыл бұрын
Easier than what he already proposed, which is the same? Just watch actually the video before writing a useless comment.
@WeightlessFlex2 жыл бұрын
@@Gazeld why when whether I comment good or bad it helps his channel. Speak for yourself only. That’s your problem!
@WeightlessFlex2 жыл бұрын
@@Gazeld also he said try to solve before watching the full solution. Speak for yourself bro that’s your problem.
@WeightlessFlex2 жыл бұрын
@@Gazeld also his solution is not the same as mine. He counts the letters frequency. My solution is much more simple and efficient so you don’t even know what you’re talking about. That’s part 2 of your problem.
@soumyajitganguly25932 жыл бұрын
@@WeightlessFlex yea simple maybe but efficient??? sorting is not more efficient than a single linear scan.
@orsimhon1332 жыл бұрын
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!
@tommckenna39272 жыл бұрын
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.
@kvelez Жыл бұрын
great code: def are_anagram(str1, str2): if len(str1) != len(str2): return f"Anagram: {False}" feq = {} feq2 = {} for ch in str1: if ch in feq: feq[ch] += 1 else: feq[ch] = 1 for ch in str2: if ch in feq2: feq2[ch] += 1 else: feq2[ch] = 1 for key in feq: if key not in feq2 or feq != feq2: return f"Anagram: {False}" else: return f"Anagram: {True}" print(are_anagram("amor", "roma"))
@ricardoantonietto93302 жыл бұрын
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 Жыл бұрын
It works but it isn’t cost effective.
@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
@famousbadger38012 жыл бұрын
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
@Buckflash2 жыл бұрын
Once again, completely out of my range of knowledge
@badbeatslayer2 жыл бұрын
I feel your pain, hard stuff
@minilek2 жыл бұрын
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').
@leonardoingallshernandez60522 жыл бұрын
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
@shivaakrish2 жыл бұрын
Better solution would be using binary search
@sergekamga45122 жыл бұрын
Definitely doing this
@ferdootieng88812 жыл бұрын
for the anagrams, i think a 256-size array would be better tho
@freecs115 ай бұрын
i have a faang interview in 2 days, i know all of these but impostor syndrome is kicking in so hard right now 💀💀
@kirand74572 жыл бұрын
Tomorrow I have a interview wish me luck 🤞
@lucaspinafi91942 жыл бұрын
tell us how it was.. ! :D
@acephelps36872 жыл бұрын
I would be so lucky if I’ll get one of this problems 😅
@jiganeshpatil14722 жыл бұрын
Make more of these videos💯💯
@Btc314btc2 жыл бұрын
Thank you for this content!
@ME-oe9gq2 жыл бұрын
Making my life better 👍❤️
@michaeljordan67682 жыл бұрын
The first solution for find first and last position does not work for this example : first_and_last([2, 3, 5, 58, 3, 10, 26], 3) returns [1, 1] instead of [1, 4]
@vinaylasetti46652 жыл бұрын
Array needs to be sorted is the precondition to the problem
@ayoub76822 жыл бұрын
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
@abubakar.khawaja2 жыл бұрын
its O(n^2) or O(nlogn), as "contains method" could be O n or O log n
@mephi5t02 жыл бұрын
contains is not free. so you have 2 nested loops.
@insidecode2 жыл бұрын
@@mephi5t0 exactly
@arjunsankar67992 жыл бұрын
Post some product based companies like Amazon DSA with problem solving q & A
@gao2737 Жыл бұрын
For the last solution of the last question, the time complexity is O(n)? It is not O(n^2)?
@althosalthos34212 жыл бұрын
I feel dumb but... for the first problem, can't you simply loop through each character and convert them to an int and add them together? If two words are anagrams then they should have the same value?
@ImperatorZed2 жыл бұрын
B + B + B would be the same as A + B + C
@Gazeld2 жыл бұрын
If A then B doesn't mean that if B then A. Basics of logic :)
@ImperatorZed2 жыл бұрын
@@Gazeld Now we can get into some fun compression algorithms that do preserve this trait.
@codetochange82 жыл бұрын
Thanks for the video....It helped a lot !!
@prathmeshkakde37312 жыл бұрын
a=input() b=input() count=0 for i in range(len(a)): if a[i] in b: count+=1 if count==len(a): print("anagram") else: print("not anagram") This also gives valid anagram or not
@amalantony85942 жыл бұрын
I have a doubt Wouldn't this code result in saying a= "aaaaa" and b = "a" as anagrams ?
@amalantony85942 жыл бұрын
@@prathmeshkakde3731 yeah that works
@insidecode2 жыл бұрын
Hello, I don't think so, this one returns true s1 = "aaaa", s2 = "abbb" while it shouldn't
@muhammadzahir9462 жыл бұрын
Challenge2 kth largest element shld be 5.since 7 repeats itself. Correct me if I am wrong
@robertotomas2 жыл бұрын
What does gas station problem test? This looks like dynamic programming
@xshadder22522 жыл бұрын
Yo guys, what is the difficulty of these problems? I have been learning python for 3 weeks, and I need a reference as a beginner. I was able to solve some of these questions using my own method, but I find his optimized solutions quite complicated.
@notyourdan3388 Жыл бұрын
Don’t expect to be able to solve these problems as a beginner. There is still MUCH you need to learn, but do not fret. You will get there eventually! No-one is born a master of algorithms.
@llekann2 жыл бұрын
This was very helpful. Thanks.
@vekyll2 жыл бұрын
51:05 wrong. 5 shouldn't come before 4.
@chrisallen17452 жыл бұрын
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!
@insidecode2 жыл бұрын
The solution works but it gives an O(n) time complexity, which is not the best for this problem
@rajeevpatel37322 жыл бұрын
Sir please make more videos regards interviews 🔥🔥 these videos help us for preparing for interview 👍
@insidecode2 жыл бұрын
I have a playlist on coding problems on my channel: kzbin.info/aero/PL3edoBgC7ScW_CBHbMc0FtdXfzgpBOGIb
@Gazeld2 жыл бұрын
You mean videos for preparing interviews help you preparing interviews? Woohoo! Fantastic! :)))
@peaceangell2 жыл бұрын
Great videos, thank you xxxxxx ❤❤❤❤❤
@waruniadithya26302 жыл бұрын
kzbin.info/www/bejne/bWrKha1tmKiIms0
@insidecode2 жыл бұрын
You're welcome!
@naorbitton82882 жыл бұрын
i think I have a better answer for the first qus1 public static bool IsAnagram(string s1, string s2) { if (s1.Length != s2.Length) { return false; } if (s1.Length==0) { return true; } for (int i = 0; i < s1.Length ; i++ ) { if (s1[0] == s2[i]) { return IsAnagram(s1.Remove(0, 1), s2.Remove(i, 1)); } } return false; }
@EbbsClifton332 жыл бұрын
On the anagram problem, can't you just sort each string in alphabetic order then check if both strings matches eachother?
@zyzden2 жыл бұрын
You are able to do this, but in instances where an array (or a string) only needs searched once, it's better to do a linear pass over the string instead of sorting and then passing over the string. Sorting is only an improvement if you need to do a search over a data set multiple times.