Linux Command Line for Beginners
59:25
Grumpy Java Developer
2:08
Жыл бұрын
Code & Chill 🍀 (1 Hour Lofi Mix)
1:11:35
Why AI Won't Replace Programmers
5:58
Tech Layoffs... wtf is going on?
5:18
How I Learned Flask in 5 Days
10:49
2 жыл бұрын
Programmer Salary Breakdown
8:16
2 жыл бұрын
How I CODE For HOURS With NO Breaks
8:02
How To Pull Request in 3 Minutes
3:06
Пікірлер
@granatapfel6661
@granatapfel6661 2 сағат бұрын
Is this a common practice in USA? Never seen that in Europe for software engineers. What of you couldn't solve it?
@johnanderson290
@johnanderson290 13 сағат бұрын
There is *indeed* a bug in this solution. Consider the scenario where the given binary search tree did not contain the node with value 25, and the input node was the node with value 20 (the root node). In this case, the program would crash on line 48 due to dereferencing a null pointer. Namely, parent is null, so parent.right will crash. The solution is to replace the code from lines 48 through 56 with the following code: while (parent != null && parent.right == child) { child = parent; parent = parent.parent; } return parent; Note, the only changes are (1) the condition of the while loop, and (2) the removal of the if condition.
@andresramirez4469
@andresramirez4469 Күн бұрын
after studying and learning to code for 3 years. I never had 1 white board problem at an interview
@mahler666
@mahler666 Күн бұрын
When the interviewer challenges an interviewee with a question that has been challenging for himself for a while!! not a good idea!!
@Yena_394
@Yena_394 2 күн бұрын
in your life. you never going to use it. and this is kid game
@olivezoo
@olivezoo 2 күн бұрын
可惜。這個例子舉得不好。
@thesadanand6599
@thesadanand6599 3 күн бұрын
one year waiting period.... oh thats a gross
@acess1st
@acess1st 4 күн бұрын
really good explanation, saved a lot of time!
@cappuchino_creations
@cappuchino_creations 5 күн бұрын
This Video was indeed very helpful. I finally understood all the principles!!
@BricePash
@BricePash 5 күн бұрын
Space complexity is 0(1) dear lord yall.
@pzmt8051
@pzmt8051 6 күн бұрын
parent class/ children class; super class/ sub class;
@billybaloop
@billybaloop 6 күн бұрын
I know the STAR method says to state the Situation first, but I feel like you could put ahead off of it the summary: "I moved everyone to vue.js", or "I broke an app." Helps to follow the story
@nikhilsharma-bj3jw
@nikhilsharma-bj3jw 6 күн бұрын
I have been part of AWS interview and not Google's. Let me tell you, AWS will still definitely beat Google in being the most stupidest process, horrendous, mind boggling, and to simply sum up - Didn't make any sense at all for me.
@GravityFalloutPines
@GravityFalloutPines 6 күн бұрын
Although it's impossible - I can see the goal of tech questions trying to gauge where you are in your coding skills. If there are 25 core concepts to coding, then perhaps try to ask a tech question (or even better - questionS) that touches all these concepts
@hanif3661
@hanif3661 6 күн бұрын
fakeo
@Coinsandtokenz
@Coinsandtokenz 6 күн бұрын
Great tuts !
@nithish5296
@nithish5296 7 күн бұрын
The job market is super tough right now in 2024-2025 people now a days are not asking these kinds of question anymore 🥹🥲
@1nifier
@1nifier 7 күн бұрын
Yup, coding is not for me.
@chorfaissam9294
@chorfaissam9294 7 күн бұрын
This type of interview can provide insight into how a candidate thinks about and solves problems. However, in real life, it's unlikely that you'll write something like this, as most of our work involves implementing commercial products with maximum efficiency. Additionally, with advancements in AI pushing the boundaries further, the interview should also assess soft skills. I wouldn't hire someone who is excellent at algorithmic coding but incapable of creating practical solutions for my company.
@joshpack
@joshpack 7 күн бұрын
Fake video interview btw.
@DoodlebobEdits
@DoodlebobEdits 7 күн бұрын
Lmao my director told me exactly why as a high level coder he doesn’t do this shit to people he interviews.. it’s pointless and says nothing about the quality of work the candidate is capable of.
@velozdrums
@velozdrums 8 күн бұрын
props to you brother, you gave it your best!
@futurexa
@futurexa 8 күн бұрын
This was an amazing recap, thank you very much
@ManKiros
@ManKiros 9 күн бұрын
Nowadays, in 99% of the jobs, the most useless coding interview you will never see
@ironmonkey1990
@ironmonkey1990 9 күн бұрын
thank you!
@davejackson88
@davejackson88 9 күн бұрын
gonna learn Java
@sumitavdash9421
@sumitavdash9421 10 күн бұрын
I can solve this question in best time complexity through single while loop iteration
@anurodhchoudhary1689
@anurodhchoudhary1689 11 күн бұрын
If you can, try to use a complicated/challenging story (make sure that you're able to explain it in a clear and concise way) this will impress the interviewer. For big companies simple stories might not work. The bar is quite high! I would recommend be prepared with 5 complex and 5 simple stories. Cheers!!!
@markspindler5321
@markspindler5321 11 күн бұрын
Great video.
@olivezoo
@olivezoo 11 күн бұрын
teacher, may I know why u name your 1st java file name as "main.java" not "classname"?
@nhowie8503
@nhowie8503 12 күн бұрын
Thank you I'm coding even I'm a kid just need to understand. Thanks I'm starting tomorrow 😅😅😊
@Notlucky.official
@Notlucky.official 12 күн бұрын
He didn’t put one of the best ones (brilliant)
@mntwana64
@mntwana64 12 күн бұрын
well explained
@biskolobiskun
@biskolobiskun 12 күн бұрын
Scratch
@jjlarochelle2523
@jjlarochelle2523 13 күн бұрын
Thank you, I was thinking about these questions totally wrong until watching this video. I was thinking of code, tech, minute details, features. But u made me realize there's a lot more to talk about.
@olivezoo
@olivezoo 13 күн бұрын
Was it must to name your first file "main.java"?
@anikethsahu7130
@anikethsahu7130 14 күн бұрын
I might be wrong, but isnt just a simple inorder traversal can make it work.
@annakelley7513
@annakelley7513 14 күн бұрын
Great short!
@olivezoo
@olivezoo 15 күн бұрын
i guess : public and static have something to do with OOP's features such abstract and polymorphism. Am i right?
@Cheebton
@Cheebton 16 күн бұрын
honestly, when it comes to ease, learning with the big 3: html, css javascript was how I started out.
@olivezoo
@olivezoo 16 күн бұрын
btw "void" also
@olivezoo
@olivezoo 16 күн бұрын
@Dear teacher: u forgot to address what "static" and "public " are for ?
@AshishCE-i3r
@AshishCE-i3r 17 күн бұрын
Thanks so so informative
@Vineeth_Shankar
@Vineeth_Shankar 17 күн бұрын
I got confused who is the interviewer and who is the interviewee 😂
@looookman
@looookman 17 күн бұрын
You just need a recursive function to "parcours" the tree and add the greater nodes to an array, then select the smallest node from the array... "et voila!"
@rudhresh5547
@rudhresh5547 18 күн бұрын
Bro is spending his whole savings to code that Bubble Sort.
@DalandanReal
@DalandanReal 19 күн бұрын
Damn after i burn my brain i understand some of stream concepts
@salisali-h5f
@salisali-h5f 19 күн бұрын
This is a nonsense question! You almost never encounter such problems in real-life development unless you're working on something as specific as building a new programming language. Most programming environments already provide abstractions for these kinds of issues! It’s unreasonable to eliminate a developer just because they didn’t pass this test.
@ragavendiranbalasubramania7065
@ragavendiranbalasubramania7065 19 күн бұрын
From my experience working with AOSP and developing drivers for Android, I don't forsee Google stopping support for Java there is a hell lot of java nightmare inside the android OS, Moving them to a new language will result in developer hell.
@TheRationalBird
@TheRationalBird 19 күн бұрын
I don't think coding interviews are this easy.