10 Common Coding Interview Problems - Solved!

  Рет қаралды 561,008

freeCodeCamp.org

freeCodeCamp.org

Күн бұрын

Preparing for coding interviews? Competitive programming? Learn to solve 10 common coding problems and improve your problem-solving skills.
💻 Code: gist.github.com/syphh/173172e...
✏️ Course developed by Inside code. Check out their KZfaq channel: / @insidecode
⌨️ (0:00:00) Introduction
⌨️ (0:00:37) Valid anagram
⌨️ (0:05:10) First and last index in sorted array
⌨️ (0:13:44) Kth largest element
⌨️ (0:19:50) Symmetric tree
⌨️ (0:26:42) Generate parentheses
⌨️ (0:37:03) Gas station
⌨️ (0:50:06) Course schedule
⌨️ (1:06:50) Kth permutation
⌨️ (1:20:13) Minimum window substring
⌨️ (1:47:46) Largest rectangle in histogram
⌨️ (2:10:30) Conclusion
🎉 Thanks to our Champion and Sponsor supporters:
👾 Raymond Odero
👾 Agustín Kussrow
👾 aldo ferretti
👾 Otis Morgan
👾 DeezMaster
--
Learn to code for free and get a developer job: www.freecodecamp.org
Read hundreds of articles on programming: freecodecamp.org/news

Пікірлер: 351
@stefenleung
@stefenleung 2 жыл бұрын
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 жыл бұрын
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.
@safari433_
@safari433_ 2 жыл бұрын
I love this channel, even though my English is no accurate to understand all content i always try to collect some good ideas they share. Thank you
@theparrot271
@theparrot271 2 жыл бұрын
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.
@yakovkemer5062
@yakovkemer5062 2 жыл бұрын
Thank you so much. As always - clear, easy to understand, useful.
@insidecode
@insidecode 2 жыл бұрын
You're welcome!
@vobieta
@vobieta Жыл бұрын
For the third problem, with the parethesis, You may produce all valid parenthesis using the Catalan recursion.
@AndrewErwin73
@AndrewErwin73 2 жыл бұрын
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 жыл бұрын
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 жыл бұрын
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 жыл бұрын
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.
@darling4316
@darling4316 2 жыл бұрын
This is amazing I just started applying
@dreamerLevel
@dreamerLevel 2 жыл бұрын
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 Жыл бұрын
@@carlos144 You paid for the food which gave you the energy to walk so not free 😏
@kaustubh_ramteke_07
@kaustubh_ramteke_07 Жыл бұрын
@@orangesnowman7137 you were raised by your parents which costs a lot; so its not free
@ratnadeepbhattacharya1307
@ratnadeepbhattacharya1307 2 жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
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]
@Makwayne
@Makwayne 2 жыл бұрын
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 жыл бұрын
Python's numbers are true numbers, not limited-size boxes. There is no chance of overflow.
@Makwayne
@Makwayne 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 жыл бұрын
@@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 👍
@Madinko12
@Madinko12 Жыл бұрын
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 4 ай бұрын
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
@thiagosoares5052
@thiagosoares5052 2 жыл бұрын
Good night! I live in Brazil I would like to say that your channel has content that others don't.
@duthegee
@duthegee 2 жыл бұрын
I have one in 3 hours and you guys posted this just in time! haha
@Btc314btc
@Btc314btc Жыл бұрын
Thank you for this content!
@prashantsakre6577
@prashantsakre6577 2 жыл бұрын
This is really great video. I am hopping similar content with different problems in the future also
@insidecode
@insidecode 2 жыл бұрын
Hey! I have a whole playlist on coding problems, you can check it: kzfaq.info/sun/PL3edoBgC7ScW_CBHbMc0FtdXfzgpBOGIb
@prashantsakre6577
@prashantsakre6577 2 жыл бұрын
@@insidecode thank you so much ✌️
@sinagh9292
@sinagh9292 2 жыл бұрын
The last problem in "heights" array there is an extra 10 in list at index 10 after 9, comapred with the histogram.
@llekann
@llekann 2 жыл бұрын
This was very helpful. Thanks.
@thefizzshow
@thefizzshow Жыл бұрын
Thanks for the video....It helped a lot !!
@learnwithaaraya1902
@learnwithaaraya1902 2 жыл бұрын
this just sooo... good ,i just wanted this thanks so much
@insidecode
@insidecode 2 жыл бұрын
you're welcome!
@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?
@ismaelgoldsteck5974
@ismaelgoldsteck5974 Жыл бұрын
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 Жыл бұрын
I was thinking about the same too!
@BigAlCodes
@BigAlCodes 6 ай бұрын
Its funny how many problems can be made more efficient with a hashmap
@linyerin
@linyerin Жыл бұрын
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.
@sergekamga4512
@sergekamga4512 Жыл бұрын
Definitely doing this
@shid.account7629
@shid.account7629 2 жыл бұрын
fantastic slides!
@fazoodle7972
@fazoodle7972 2 жыл бұрын
Sorting then comparing is genius for anagrams! So ez n fast bb how we like it 👌
@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.
@amaldev4150
@amaldev4150 2 жыл бұрын
Thanks a lot for your work. And also side note, you sound a lot like gru which is cute.
@jiganeshpatil1472
@jiganeshpatil1472 2 жыл бұрын
Make more of these videos💯💯
@bzboii
@bzboii 2 жыл бұрын
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 жыл бұрын
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 жыл бұрын
Guess you’d check to make sure all the values are exactly 0 then
@bzboii
@bzboii 2 жыл бұрын
@@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 жыл бұрын
@@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.
@mahendranath2504
@mahendranath2504 2 жыл бұрын
Thank you so much 👍🏼🎉⭐🙏❤️
@insidecode
@insidecode 2 жыл бұрын
You're welcome!
@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.
@DhirajPatra
@DhirajPatra Жыл бұрын
Sound of this tutorial is not clear to understand. However the topics are clearly explained. Thanks
@yasinmohammadi8
@yasinmohammadi8 2 жыл бұрын
That's really useful thanks
@insidecode
@insidecode 2 жыл бұрын
You're welcome!
@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🙂🙂🙂
@ME-oe9gq
@ME-oe9gq 2 жыл бұрын
Making my life better 👍❤️
@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"
@ketanbhailikar5888
@ketanbhailikar5888 2 жыл бұрын
Wow! Can't believe the timing 😮
@wotizit
@wotizit 3 ай бұрын
Did you get in?
@anonymous102592
@anonymous102592 19 күн бұрын
thanks , you saved my day
@tan_0562
@tan_0562 2 жыл бұрын
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 жыл бұрын
you gonna be the 20 years old dude with 12 years of experience XDDD
@AfgAlpha
@AfgAlpha Жыл бұрын
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
@brendakuekia2818 Жыл бұрын
salesmen* not salesman
@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)
@peaceangell
@peaceangell 2 жыл бұрын
Great videos, thank you xxxxxx ❤❤❤❤❤
@waruniadithya2630
@waruniadithya2630 2 жыл бұрын
kzfaq.info/get/bejne/bZ-Xh91oyKm5lJ8.html
@insidecode
@insidecode 2 жыл бұрын
You're welcome!
@khalidelgazzar
@khalidelgazzar 2 жыл бұрын
Great vidéo. Thank you
@insidecode
@insidecode 2 жыл бұрын
You're welcome!
@danak5958
@danak5958 Жыл бұрын
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!
@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.
@arjunsankar6799
@arjunsankar6799 2 жыл бұрын
Post some product based companies like Amazon DSA with problem solving q & A
@Makwayne
@Makwayne 2 жыл бұрын
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 жыл бұрын
I think it works yes
@orsimhon133
@orsimhon133 Жыл бұрын
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!
@jykw1717
@jykw1717 2 жыл бұрын
This is Fxxking amazing
@IldarSagdejev
@IldarSagdejev 9 ай бұрын
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.
@fengliu975
@fengliu975 Жыл бұрын
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
@saplay3372
@saplay3372 2 жыл бұрын
Great sir
@ricardoantonietto9330
@ricardoantonietto9330 Жыл бұрын
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 8 ай бұрын
It works but it isn’t cost effective.
@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.
@minilek
@minilek Жыл бұрын
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').
@Dom-zy1qy
@Dom-zy1qy Жыл бұрын
For the first one, you can just do: def validAnagram(s1, s2): return Counter(s1) == Counter(s2)
@vinylSummer
@vinylSummer 9 ай бұрын
That was mentioned in the video
@acephelps3687
@acephelps3687 Жыл бұрын
I would be so lucky if I’ll get one of this problems 😅
@jarrodburns6339
@jarrodburns6339 2 жыл бұрын
Great video, thanks for all the work you put into it. I would like to add though, if you are building a string histogram, like in the first problem, you can simply do: for k in string: my_dict[k] = my_dict.get(k, 0) + 1
@ChannelBarkvarosz
@ChannelBarkvarosz Жыл бұрын
for the first one, cant i just convert the 2 strings to char array, sort them, check if they are the same and return the result?
@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.
@rajeevpatel3732
@rajeevpatel3732 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: kzfaq.info/sun/PL3edoBgC7ScW_CBHbMc0FtdXfzgpBOGIb
@Gazeld
@Gazeld 2 жыл бұрын
You mean videos for preparing interviews help you preparing interviews? Woohoo! Fantastic! :)))
@axbn2190
@axbn2190 2 жыл бұрын
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 жыл бұрын
That’s not the same problem.
@SkillUpMobileGaming
@SkillUpMobileGaming 2 жыл бұрын
@@lukenothere1252 That's exactly the same problem. You clearly learned nothing.
@mdmahmoodbinhabib851
@mdmahmoodbinhabib851 2 жыл бұрын
The solution provided was case sensitive in mind.
@linyerin
@linyerin Жыл бұрын
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?
@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))
@sushantjha1033
@sushantjha1033 Жыл бұрын
Isn't creating a proper max or min heap cost N*logN time complexity. Contradictory to the given one at 18:42 ?
@gao2737
@gao2737 Жыл бұрын
For the last solution of the last question, the time complexity is O(n)? It is not O(n^2)?
@kiddyboy1540
@kiddyboy1540 Жыл бұрын
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
@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 жыл бұрын
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) 🙂
@Makwayne
@Makwayne 2 жыл бұрын
ARE YOU KIDDING ME I HAVE AN INTERVIEW IN THREE DAYS AND YOU DROPPED THIS BOMB NUKE ME FREECODECAMPDADDY
@deliveringIdeas
@deliveringIdeas 2 жыл бұрын
Thank you FCC!
@insidecode
@insidecode 2 жыл бұрын
You're welcome!
@amirshimonivandelft2428
@amirshimonivandelft2428 Жыл бұрын
Isn't the cost of building a priority(or a heap) NlogN? I am super confused now, it cant be O(n )
@robertotomas
@robertotomas 2 жыл бұрын
What does gas station problem test? This looks like dynamic programming
@shridhar_rao
@shridhar_rao 2 жыл бұрын
Respect. 🙏
@mehrannassiry482
@mehrannassiry482 2 жыл бұрын
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 жыл бұрын
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 жыл бұрын
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]])
@harikrish07
@harikrish07 Жыл бұрын
Thank you thala
@eduardopa
@eduardopa 2 жыл бұрын
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 жыл бұрын
On average it is O(n) but worst case is O(n^2)
@ferdootieng8881
@ferdootieng8881 2 жыл бұрын
for the anagrams, i think a 256-size array would be better tho
@tomdriver6733
@tomdriver6733 9 ай бұрын
Can you use C++ or Java or C# so that everyone can read the source code?
@brizamel7085
@brizamel7085 2 жыл бұрын
Thank yoooou
@insidecode
@insidecode 2 жыл бұрын
You're welcome!
@mj-lc9db
@mj-lc9db 7 ай бұрын
for the first one u can just do a return freq1 == freq2
@Buckflash
@Buckflash 2 жыл бұрын
Once again, completely out of my range of knowledge
@badbeatslayer
@badbeatslayer 2 жыл бұрын
I feel your pain, hard stuff
@CTT36544
@CTT36544 Жыл бұрын
Without time and space complexity limitations, most of these problems are so easy.
@waqarahmed4200
@waqarahmed4200 4 ай бұрын
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
@ajax333221
@ajax333221 2 жыл бұрын
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
@brunobzaffari
@brunobzaffari 3 ай бұрын
Can some one help 1:35:27 is the for i ... out of order, isnt it?
@hydroidtech892
@hydroidtech892 2 жыл бұрын
Nice
@user-cv5kq9hy7x
@user-cv5kq9hy7x 2 жыл бұрын
អរគុណ
@stealtime
@stealtime 2 жыл бұрын
nice one
@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).
@iAmKleinMoretti
@iAmKleinMoretti 2 жыл бұрын
much more elgant solution to problem 1 is to sort both strings into alphabetical order and see if they're equivalent
@killianward9127
@killianward9127 Жыл бұрын
It's not as fast though, because sorting is at best O(n logn) whereas counting each letter is O(n)
@brunosilva-ed4pz
@brunosilva-ed4pz 2 жыл бұрын
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 жыл бұрын
It comes with practice
@oualidlaib5965
@oualidlaib5965 Жыл бұрын
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 Жыл бұрын
Bruh Im in Spain and we also do these interviews.
@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 😅
@muhammadzahir946
@muhammadzahir946 Жыл бұрын
Challenge2 kth largest element shld be 5.since 7 repeats itself. Correct me if I am wrong
@c0mplicated
@c0mplicated 2 жыл бұрын
in the second problem, cant we create two loops, one starts from front of string to search the first target and second loops start from behind the string to search the last target?
@insidecode
@insidecode 2 жыл бұрын
Yes it works but doesn't have the best time complexity
@AMX0013
@AMX0013 2 жыл бұрын
you can get away with one loop here just by making the second iteration pointer to be lenght(array)-iterator. Nonetheless the timecomplexity would remain the same
@theflabbygentleman9292
@theflabbygentleman9292 2 жыл бұрын
if you want your test cases to time out, sure
@adampielach4942
@adampielach4942 2 жыл бұрын
@@AMX0013 this +1
@PraveenKumar-ip7ef
@PraveenKumar-ip7ef 2 жыл бұрын
🔥🔥🔥
@CSTutorCenter
@CSTutorCenter 7 ай бұрын
nice imagery
@tajjamalabbas
@tajjamalabbas 2 жыл бұрын
.💕💕 love ur content
@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
@killianward9127
@killianward9127 Жыл бұрын
For the second problem, I don't understand how the binary search algorithm doesn't just get stuck inside of the sequence of target numbers. Could someone please explain?
@ohmegatech666
@ohmegatech666 Жыл бұрын
It's because of the if/else statements used to check our place with respect to the repeated sequence
@CodingInterviewTV
@CodingInterviewTV 5 ай бұрын
It's crazy that people can just use apps like Coding Interview Champ to solve these LeetCode interview problems during the coding interview
Top 7 Algorithms for Coding Interviews Visualized
33:45
Kantan Coding
Рет қаралды 21 М.
Software Engineering Job Interview - Full Mock Interview
1:14:29
freeCodeCamp.org
Рет қаралды 1,3 МЛН
Универ. 10 лет спустя - ВСЕ СЕРИИ ПОДРЯД
9:04:59
Комедии 2023
Рет қаралды 1,9 МЛН
WHO DO I LOVE MOST?
00:22
dednahype
Рет қаралды 59 МЛН
Mastering Dynamic Programming - How to solve any interview problem (Part 1)
19:41
Python for Coding Interviews - Everything you need to Know
26:18
How to Solve ANY LeetCode Problem (Step-by-Step)
12:37
Codebagel
Рет қаралды 100 М.
Binary Tree Algorithms for Technical Interviews - Full Course
1:48:53
freeCodeCamp.org
Рет қаралды 691 М.
How to NOT Fail a Technical Interview
8:26
Fireship
Рет қаралды 1,3 МЛН
Graph Algorithms for Technical Interviews - Full Course
2:12:19
freeCodeCamp.org
Рет қаралды 1,2 МЛН
Google Coding Interview With A High School Student
57:24
Clément Mihailescu
Рет қаралды 4 МЛН
Python Algorithms for Interviews
3:47:08
freeCodeCamp.org
Рет қаралды 804 М.
Data Structures and Algorithms for Beginners
1:18:43
Programming with Mosh
Рет қаралды 1,7 МЛН
Универ. 10 лет спустя - ВСЕ СЕРИИ ПОДРЯД
9:04:59
Комедии 2023
Рет қаралды 1,9 МЛН