Lmfao yesterday I just had a coding assessment for Amazon... and it was a couple of challenges to do with Binary Trees. It was a little more complex than this question, however.
Oh man... that *ucking ad is killing me. What about NO cuz I have a life and I avoid like the plague working with toxic big tech (or small tech that think they are big) compagnies? Like if working for Google was the dream of every developers.
This is first of 6 interviews. So damn true. They always do many rounds and repeat same questions but another person. And after the final round they will tell you that your profile and performance is good, But unfortunately the company is looking for a bit more skilled person. ~ Although you’ve answered all the questions correctly ~ These crazy people
When that happens they are basically just fishing for a genius sclave. They want someone who could easilly work for any top company and keep trying untill they find someone that clearly outshines everyone else.
Me too! I didn’t even know I had an anxiety trigger! I was really rooting for the guy! Thinking, “just pleaasssee don’t stand up in the middle of the call” thinking it would be a video call
Why are you gatekeeping a data structure? If it's a connected graph with n-1 edges it's a tree. So unless you have any extra references going here and there in the nested ja objects they are trees
Friendly reminder that unlimited PTO is a scam. Employees with unlimited PTO take less PTO on average and since you don’t earn PTO, the company doesn’t have to pay it out when you leave.
So true! Like the video mentioned, companies that offer it usually demand too much of a time commitment so employees can’t actually take advantage of it.
I remember the first time I actually had a problem at work that could take advantage of using trees and a doubly linked list. Used algebraic data types in typescript to implement it. It was beautiful. I felt like a real computer scientist. Never happened again...
This is so accurate. I just passed an interview and a separate long coding challenge. I have 3 45 minutes to 1 hour interviews scheduled on Friday. If I pass those, I will have 2 other interviews. This is all just for one job. Summs it up really
@@OnceABustAlwaysABust Salary should be on the job listing. But no it’s not because what do you only work for money? Um yes otherwise I would just get high and watch the matrix all day.
Software Development: the only career field that requires you to work on unpaid personal projects before you enter the field. Imagine a surgeon interview: "do you ever do any surgeries for free in your basement?" Garbage man: "tell us about the times you've driven around collecting trash from strangers."
@@Sergeeeek sure, just like software development requires you to know programming, but garbage men postings don't ask how often you drive in your free time.
@@atheosmachina I dont really consider software developers as necessarily creative. It's more like engineering where you use the tools available to you to meet the product requirements.
OMG. This is so realistic, it actually gave me anxiety. This is exactly like virtually every tech interview I've ever had. Except no one spoke the truthful bits out loud.
I've had a bunch of interviews and never had DS&A questions, questions were more like make an API call or fix the broken code or just explain how data flows from FE->BE, maybe I'm lucky or more places are realizing how they're losing good employees by doing these types of interviews
As a noob taking the self-taught route, it didn't make sense why in interviews they would ask these DS&A questions if you're not going to be using them at work, then I started studying DS&A (or trying to) and I realised it's because it's a good measure of how you can convert your thoughts/ideas into code. Which is very important for a programmer.
@@jakubswistak8003 he said big o which means worst case in which case you don't even try classifying bogosort the best you could achieve is counting sort already knowing what numbers exist in the array and that they simply grow by 1 as the name suggest it's a counting sort and I don't think it's possible to achieve something in big o better than this
Be told to prepare for live coding to solve simple algos. Then at the interview, you have 30 minutes to write a whole week solution using their default template that is hosted in google drive with instructions over a jpg. Good stuff.
first interview of six... the most relatable part. It gets even better with "full remote" companies where it takes 5 interviews and 3 coding tasks to realize they don't have insurance and taxes figured out. Gotta love that.
I always got asked the most irrelevant questions that had nothing to do with the job Getting interviewed by random dudes who's goal is to show off instead actually evaluating your skills
Lol, had one interview where I first talked with the CTO where everything went super well; we discussed my previous work, coding patterns and principles related to my field etc. Then in round 2 I had to talk with a "senior engineer", who was super rude from the beginning, and kept asking me loosely worded trick questions about things which definitely weren't relevant to the actual development. I asked for him to clarify his questions (English wasn't his first language), and also wondered its relevance to the position, which was enough for him to eventually end the interview. Ended up not landing the job, but instead went to another place which did super well, so I'm super happy to have dodged that bullet 😄. I later met a friend who also interviewed for that place, and his experience was exactly the same.
The job I recently accepted involved a 30 minute introductory chat to get a feel for each other and 1 hour technical interview to understand your communication, thought process and coding style. The most I had to do was make a console application call a class that was based of an interface to print the count of its items. They made the process feel wonderful and whilst I enjoyed the coding challenges for other interviews (offline challenge with online discussion) these guys focused more on the person than the task which was so refreshing. It felt like the right choice however, only time will tell.
I have recently been asked for making python script for generating html templates - job was done in 20 mins. On the second interview I passed 65 minutes test - 36/40. At the third interviewthey asked some question regarding Elasticsearch, docker, mongo. At the end these guys offered me IQ test. All of this was just for frontend developer position. Guess what I sent them as the answer.
Damn that was accurate, I almost started crying... P.S I actually had 2 interviews with 6 steps. On one I was rejected after the last interview because "the company recruits only highly motivated people". 😂😭😂
Man, this is so on point. Experienced this frustration today. The thing about being asked questions that has nothing to do with the job: It's happened every single time in my 20 years as a developer.
The best part is when the interviewier dont work in tech, so when he/she asks you to describe your previous experiences and projects, most of the time you talk about tech stuff and the interviewier is like "Wait what is CRUD?"
this is really accurate! I've done at least 8 leetcode easy problems now! that was hard! I'm not even sure they want me to ever build a UI or iOS application anymore the deeper I get into this stuff. and I bought that book too! things are way different from 10 years ago, in that, all companies have adopted the FANG interviews I can't get past. and the companies are making apps even more useless than 5 years ago! none of the companies I interviewed with 5 years ago are even around!
This is accurate. If the hiring process is intense then the pay better be good and work should be just as exciting. If you have to go through such an intense hiring process all for subpar pay and work that is nowhere near that level then leave. You deserve better.
@@garagavia nah bruh you could create your own language, code another language on it and use that to make AI generated CPU designs, but if you fail fizzbuzz... you're not hired.
Pretty true.. the only tree structure I know is in database indexing. In app server code we just use Hash table all the time. That stuff is faster and memory cost next to nothing anyway.
I actually had to use tree traversal and basic recursion on my internship, like 2 months in on a 16 month internship. Implemented a basic python module to deserialize/serialize XML (element trees) and pick out the Tag, Value, and Attributes. It was to deal with SOAP. Why you might ask? Cause they refused to deal with 3rd party imports in their code, so they made me (the intern) reinvent the wheel.
I'm worried about when I actually take an interview. I made a javascript interpreter in C++ without any 3rd party libraries and even did some operating system development as hobby projects. Except I royally suck at math and don't have every common algorithm embedded in my brain. I'm not even sure I'd even be considered for an interview at all given I never took any computer science courses or anything.
To be honest this kind of outsourcing of difficult work is quite common now man they really milk the interns well. Hope you got what you were due man (altho I doubt lol)
Wait until you see the opposite side of that where all your expected to do is use other people code and glue it together, and your forced to even use broken packages either because your not allowed to reinvent the wheel or because package dependencies, working on your own roll is more often better than trying to hack around someone else. You will look back at this moment fondly. In your case is a bit strange cos SOAP is old XML Parsers are abundant. It can depend on the language as well. Edit: This isn't to advocate against library use but just wait until you see the other side.
@@farrongoth6712 there’s a few XML parsers but not in python and it had to be in python and all I had was standard lib. No imports. It also had to connect to our internal request serializer/deserializer. SOAP messages could be turned into well formed request objects within our system, and then fed to the final backend. So there was some custom work. Also wrote a WSDL generator that read off types on functions in python and generated a WSDL programmatically. That was fun and good use of functional programming skills I learned in University. Yeah I already look back at my intern days fondly and think “damn the days of 8 hours of uninterrupted development without a single fucking meeting - heaven” haha
Honestly my interview experience so far has been very different. people are very honest and open. the coding portion always made sense so far and I never felt like wasting my time. i guess i am lucky with the jobs that i apply to lol
I was asked my background of a requirement, but I wasn’t sure what it even was. I asked for clarification during the interview. No one knew what it was, apologized and said they haven’t actually used that since the early 90s
This was so me yesterday. I messed when explaining how to implement an algorithm, I had to ask for feedback on my performance. Lucky enough, I was guided on areas I need to improve on.
"Oh, were not allowed to give you any feedback, it goes against our policy." "What policy?" "The policy of not giving feedback." *frowns suspiciously" :/
Yep. On target. HR screenings are gems, too. I love it when the HR person has no idea what the job consists of. They say, "Do you have any questions?" I say , "yes, the job posting mentions so and so, can you tell me more about this?" HR: "I'm not the tech person". Okay! Or, I love it when the interviewer is 10 minutes late to the interview. That's ok. But if I am one minute late, they disregard the call. Unlimited PTO: phantom benefit.
The worst part about getting hired for a software job is not whether your projects are impressive or that you know the stuff that you are applying but instead whether or not you can solve an algorithm question for 15 minutes lol
I work as an SDET and can completely relate i went on a few interviews and they asked ridiculous questions that have nothing to do with automation software
This gives me flashbacks to Brooklyn 99's episode where Terry and Gina interview people but didn't use technical questions but more behavioral and related to the workplace environment/flow. That became my ideal interview. But alas, it is only an ideal currently T_T
In my coding interview they asked excel questions i was prepared for reversing a linked list question and I nailed job and got job in to accounting firm and I was software Engineer their Edit:I left the job after 3 months because I was just running automated python files for 3 hr and and was managing servers I told them to keep it employee than software Engineer
Have you experienced any of this at your coding interview?
Also, join us on Discord: discord.gg/ypFyyWq
hope u get the job
I was watching this video somehow just one minute before interview with Microsoft yesterday! Totally relatable.
No im only 17
This interview looks like Amazon interview lmao
Lmfao yesterday I just had a coding assessment for Amazon... and it was a couple of challenges to do with Binary Trees. It was a little more complex than this question, however.
The worst part of Software Engineering are the interviews.
+1
@@benkipling5260 you mean worst part is coding itself
unpopular opinion: i actually enjoy swe interviews!
@@bdjeosjfjdskskkdjdnfbdj Want to do mine? lol
@@benkipling5260 Where are you interviewing at?
"So you wanna be a software engineer at Google?"
Got the same ad. She triggers my anxiety somehow😂
working at google is worse than working for hitler
@TECOC341 Pawan Nirpal she's actually the dude's gf/wife, but yeah it's obviously done intentionally.
Oh man... that *ucking ad is killing me. What about NO cuz I have a life and I avoid like the plague working with toxic big tech (or small tech that think they are big) compagnies? Like if working for Google was the dream of every developers.
Dude I literally got this ad after finishing this video 🤣🤣🤣
Free bananas? I'm totally in
Ahahhahahah yeah, same here 😂😂😂😂😂
th-cam.com/video/LDbSdB0HkWY/w-d-xo.html
Chintu eats Bananas all-time , probably that's the reason why he's sooo good
He is talking about the fruit, not the dick.
😂
That's what you get in a code monkey position.
This is first of 6 interviews.
So damn true.
They always do many rounds and repeat same questions but another person. And after the final round they will tell you that your profile and performance is good, But unfortunately the company is looking for a bit more skilled person.
~ Although you’ve answered all the questions correctly ~
These crazy people
When that happens they are basically just fishing for a genius sclave. They want someone who could easilly work for any top company and keep trying untill they find someone that clearly outshines everyone else.
This is why you don't do free work. If it's not than a couple 30 minute talks, it gets paid.
@@alexwindy3 or they are just a paid construct to torn u appart..
So fuckng true
...or a less skilled (and therefore less costly)...
The beginning of this video triggered my anxiety 😂
Dude, he scared me even I have no interviews in the mean time 😥
Me too! I didn’t even know I had an anxiety trigger! I was really rooting for the guy! Thinking, “just pleaasssee don’t stand up in the middle of the call” thinking it would be a video call
same
Hhhhhh same here
I'd laugh but I probably shouldn't laugh at anxiety disorders, you have my sympathy man.
"I've never seen this problem in my life" 😂😂😂😂 I can't
Interviewers be like: We use trees all the time
Me: No, mister. Nested Javascript objects don't count as trees.
@Noor Wachid whether it's heap allocated or not doesn't affect it being a tree
Why are you gatekeeping a data structure? If it's a connected graph with n-1 edges it's a tree. So unless you have any extra references going here and there in the nested ja objects they are trees
@Noor Wachid wtf does that have to do with it being a tree or not?
"We use stacks all the time"
"Oh great! What kind of problems have you solved with stacks?"
"Ohh no I mean we use he JS stack"
If I am not actually creating trees, I don't care whether new objects are stored in heaps or bananas
Friendly reminder that unlimited PTO is a scam. Employees with unlimited PTO take less PTO on average and since you don’t earn PTO, the company doesn’t have to pay it out when you leave.
Exactly! Nice comment addition to the video.
So true! Like the video mentioned, companies that offer it usually demand too much of a time commitment so employees can’t actually take advantage of it.
What do you mean by "you don't earn PTO" I don't understand. Thanks
@@monzerfaisal3673 They don’t keep track of how much PTO you have, so when you leave they just pay you ‘zero’ PTO
What's PTO?
I remember the first time I actually had a problem at work that could take advantage of using trees and a doubly linked list. Used algebraic data types in typescript to implement it. It was beautiful. I felt like a real computer scientist. Never happened again...
This is so accurate. I just passed an interview and a separate long coding challenge. I have 3 45 minutes to 1 hour interviews scheduled on Friday. If I pass those, I will have 2 other interviews. This is all just for one job. Summs it up really
I too had to clear six freakin rounds to get my job so I feel your pain man😪
I once went through 7!!!!! interviews and then rejected their offer. They were pissed but so was I after seeing the salary
@@archanadanappa6868 I'm just starting coding and you're all stressing me out 😢
@@OnceABustAlwaysABust Salary should be on the job listing. But no it’s not because what do you only work for money? Um yes otherwise I would just get high and watch the matrix all day.
Atlassian?
Haha so true. The recent quote that I read was “No industry treats their potential employees so bad.”
tech people love to whine alot. At least you get payed way above average
@@maythesciencebewithyou Is not like the skills needed for it comes from the sky. And having high criteria is not same as unfair treatment.
the interviewer having a stackoverflow tab open on how to invert a binary tree is just too good for some reason 😂
Software Development: the only career field that requires you to work on unpaid personal projects before you enter the field.
Imagine a surgeon interview: "do you ever do any surgeries for free in your basement?"
Garbage man: "tell us about the times you've driven around collecting trash from strangers."
Sales interview: "so how often do you call up your family and friends and make them buy useless stuff?"
Not quite true, artists, writers, actors, really anything creative requires unpaid portfolio work.
Driving a garbage truck requires being able to drive
@@Sergeeeek sure, just like software development requires you to know programming, but garbage men postings don't ask how often you drive in your free time.
@@atheosmachina I dont really consider software developers as necessarily creative. It's more like engineering where you use the tools available to you to meet the product requirements.
Being someone went through 20 rounds of interviews over the past 6 months I can say that this interview is 100% accurate!
I'm getting there. (digital marketer)
Same for me, it is crazy
Well at least you got some calls, unlike some who just get ignored
Some = me
OMG. This is so realistic, it actually gave me anxiety.
This is exactly like virtually every tech interview I've ever had. Except no one spoke the truthful bits out loud.
“...you even bought a copy of CTCI, even though you never used it.” I feel attacked
Yeah WTF. This guy is spying on me.
I've had a bunch of interviews and never had DS&A questions, questions were more like make an API call or fix the broken code or just explain how data flows from FE->BE, maybe I'm lucky or more places are realizing how they're losing good employees by doing these types of interviews
Where are you interviewing lol I want these kinds of interviews
This type of crappy questions are the norm in bad USA companies.
The complex interviews like sorting and other random stuff is certainly a turn off
I still have no clue what that means
As a noob taking the self-taught route, it didn't make sense why in interviews they would ask these DS&A questions if you're not going to be using them at work, then I started studying DS&A (or trying to) and I realised it's because it's a good measure of how you can convert your thoughts/ideas into code. Which is very important for a programmer.
He's lucky one of the eight easy leetcode problems he did was that one
I can't do that one 😭
Did trees before. Crazy but you know what's crazier? Managing nested for loops for every single iteration as the program runs in real time.
"Produce a sorting algorithm with a big O of n(1)"
Well that's easy, just use radix
Bogosort is n(1) at best
@@jakubswistak8003 he said big o which means worst case in which case you don't even try classifying bogosort the best you could achieve is counting sort already knowing what numbers exist in the array and that they simply grow by 1 as the name suggest it's a counting sort and I don't think it's possible to achieve something in big o better than this
@@feritperliare2890 Big O doesn't mean worst case...
@@jakubswistak8003 Bogosort is O(n) bestcase because you still need to check that it is in order.
Be told to prepare for live coding to solve simple algos. Then at the interview, you have 30 minutes to write a whole week solution using their default template that is hosted in google drive with instructions over a jpg. Good stuff.
That was me at western digital, felt burned out after the 4th one. Ended up questioning life after everything was over. LMAO
first interview of six... the most relatable part. It gets even better with "full remote" companies where it takes 5 interviews and 3 coding tasks to realize they don't have insurance and taxes figured out. Gotta love that.
I always got asked the most irrelevant questions that had nothing to do with the job
Getting interviewed by random dudes who's goal is to show off instead actually evaluating your skills
@Raph0ne you are the most beautiful man I have ever layed my eyes on
@Raph0ne it is...
Lol, had one interview where I first talked with the CTO where everything went super well; we discussed my previous work, coding patterns and principles related to my field etc.
Then in round 2 I had to talk with a "senior engineer", who was super rude from the beginning, and kept asking me loosely worded trick questions about things which definitely weren't relevant to the actual development. I asked for him to clarify his questions (English wasn't his first language), and also wondered its relevance to the position, which was enough for him to eventually end the interview.
Ended up not landing the job, but instead went to another place which did super well, so I'm super happy to have dodged that bullet 😄. I later met a friend who also interviewed for that place, and his experience was exactly the same.
@@Arthasgerdk Maybe you should let that CTO know about that "senior engineer", he sounds like a power tripping asshole
@@FlabbyTabby yeah that's also right
The job I recently accepted involved a 30 minute introductory chat to get a feel for each other and 1 hour technical interview to understand your communication, thought process and coding style. The most I had to do was make a console application call a class that was based of an interface to print the count of its items. They made the process feel wonderful and whilst I enjoyed the coding challenges for other interviews (offline challenge with online discussion) these guys focused more on the person than the task which was so refreshing.
It felt like the right choice however, only time will tell.
name?
and how is it going now?
^^
tell us
I have recently been asked for making python script for generating html templates - job was done in 20 mins. On the second interview I passed 65 minutes test - 36/40. At the third interviewthey asked some question regarding Elasticsearch, docker, mongo. At the end these guys offered me IQ test. All of this was just for frontend developer position. Guess what I sent them as the answer.
"Invert a Binary Tree in PHP :-P"
The worst part of long tedicious unessecary interviews is that you would have wasted an entire day if you fail them
It's never wasted, just more practice for useless problems that have no real intrinsic value
@@lorenzo4819 that's somthing my recruiter would say to start again
And you also waste your PTOs if you are still working in a company.
Policy of not giving feedback 😆
yea... this is pretty accurate. Although they're typically 5 - N minutes late
With N being an integer between 5 and 2 to the power of 32 xD
So if N > 5, then they are negative minutes late? Does that make them early? haha
@@marcw6875 no they are 5 to N minutes late not 5 minus N 😂
This is gonna get millions of views over the next few months
Hello too!
No
Is now the future?
237k is pretty good too
hi
Omg, the feels. If this is really how it is, I'm going to die interviewing when it's my turn. The HR person in me is crying.
Hey don’t you go to Texas State !? XD
Have an interview in 40 minutes, this is way to relatable.
I hope it went well man
@@ashlostbones It went way better than the past few have been. Thanks!
@@jrkdigital keep us posted
What have you been asked before and now? Did you get ?
@@jrkdigital so what's the word?
As a programmer am just laughing hard on the "you will use it in your next interview"
Very accurate.
Don't forget about friendly introduction and brutal rejection with no specific feedback
True! Using these stupid questions in the interviews really pisses me off...
Damn that was accurate, I almost started crying...
P.S I actually had 2 interviews with 6 steps. On one I was rejected after the last interview because "the company recruits only highly motivated people". 😂😭😂
damn the accuracy of this, entertaining, loved it!
"You bought a copy of CTCI and never even used it" loool
I also didnt even do the easy leetcode questions by myself...just copy pasted from online
You forgot the part where the say "Unfortunately, we have found a better candidate, and we will not be moving forward with you"
This sounds angelic compared to given an advanced code when you've specifically mentioned you're a beginner for an internship. An internship!
Man, this is so on point. Experienced this frustration today.
The thing about being asked questions that has nothing to do with the job: It's happened every single time in my 20 years as a developer.
I was asked fizzbuzz problem at LinkedIn. Interviewers think that this ONE question can differentiate good and bad coder !
The best part is when the interviewier dont work in tech, so when he/she asks you to describe your previous experiences and projects, most of the time you talk about tech stuff and the interviewier is like "Wait what is CRUD?"
bruh legit
this is really accurate! I've done at least 8 leetcode easy problems now! that was hard! I'm not even sure they want me to ever build a UI or iOS application anymore the deeper I get into this stuff. and I bought that book too! things are way different from 10 years ago, in that, all companies have adopted the FANG interviews I can't get past. and the companies are making apps even more useless than 5 years ago! none of the companies I interviewed with 5 years ago are even around!
As a Physics major, my coding skills include importing numpy and matplotlib.
This is accurate. If the hiring process is intense then the pay better be good and work should be just as exciting. If you have to go through such an intense hiring process all for subpar pay and work that is nowhere near that level then leave. You deserve better.
This makes me feel sad😭 I will have to go through this shit one day and the worse part is this is my dream😭
U and everyone else 😂
If you're good at coding you will get hired no problem.
If being an employer is your dream your not dreaming high enough
@@garagavia nah bruh you could create your own language, code another language on it and use that to make AI generated CPU designs, but if you fail fizzbuzz... you're not hired.
Pretty true.. the only tree structure I know is in database indexing. In app server code we just use Hash table all the time. That stuff is faster and memory cost next to nothing anyway.
" bought the cracking the code interview even though I never read it" I feel attacked😑 collecting dust on my bookshelf. Lol
That thing about giving feedback is so true!!!
I actually had to use tree traversal and basic recursion on my internship, like 2 months in on a 16 month internship. Implemented a basic python module to deserialize/serialize XML (element trees) and pick out the Tag, Value, and Attributes. It was to deal with SOAP. Why you might ask? Cause they refused to deal with 3rd party imports in their code, so they made me (the intern) reinvent the wheel.
I'm worried about when I actually take an interview.
I made a javascript interpreter in C++ without any 3rd party libraries and even did some operating system development as hobby projects.
Except I royally suck at math and don't have every common algorithm embedded in my brain.
I'm not even sure I'd even be considered for an interview at all given I never took any computer science courses or anything.
Just a little copy here, little paste there. Hey look! I'm done 😆😆
To be honest this kind of outsourcing of difficult work is quite common now man they really milk the interns well. Hope you got what you were due man (altho I doubt lol)
Wait until you see the opposite side of that where all your expected to do is use other people code and glue it together, and your forced to even use broken packages either because your not allowed to reinvent the wheel or because package dependencies, working on your own roll is more often better than trying to hack around someone else.
You will look back at this moment fondly.
In your case is a bit strange cos SOAP is old XML Parsers are abundant. It can depend on the language as well.
Edit: This isn't to advocate against library use but just wait until you see the other side.
@@farrongoth6712 there’s a few XML parsers but not in python and it had to be in python and all I had was standard lib. No imports.
It also had to connect to our internal request serializer/deserializer. SOAP messages could be turned into well formed request objects within our system, and then fed to the final backend. So there was some custom work. Also wrote a WSDL generator that read off types on functions in python and generated a WSDL programmatically. That was fun and good use of functional programming skills I learned in University.
Yeah I already look back at my intern days fondly and think “damn the days of 8 hours of uninterrupted development without a single fucking meeting - heaven” haha
Free potassium > Work-life balance
I was laughing but became sad when I remember its my life.
Hey that's how prepared for the coding interview for my job too! 😂 Except I practiced 7 easy level Leetcode problems not 8 lol
This would be funny if it wasn't completely true...
Says something about human humour
"Never seen this problem before in my life" is low-key the best advise in this video. I'll definitely use it
Honestly my interview experience so far has been very different. people are very honest and open. the coding portion always made sense so far and I never felt like wasting my time. i guess i am lucky with the jobs that i apply to lol
Love how the guy has stack overflow in background
Tech companies nowadays: build a rocket during the interview; tighten the screws at work.
“Unlimited PTO but I could only find time to take 3 days off” man that hits too close to home
"You definitely gonna need them....in the next interview" ~ Invert Binary Tree
The 8 leetcode easies and cracking the coding interview comments were too real.....
Literally have a C++ interview coming up and am just gonna review trees lmao
Im seeing invert binary tree in php
What!!!!!!!
I got 7 interviews by one company only to get rejected for the job A MONTH LATER, boys is hard out there, but do not loose hope💖
I was asked my background of a requirement, but I wasn’t sure what it even was. I asked for clarification during the interview. No one knew what it was, apologized and said they haven’t actually used that since the early 90s
Should be titled "If coding interviews were the way coding interviews are"
Violation of policy ....of not giving feedback 😂
Worst is when they don’t get back to you what so ever. As if you hadn’t even existed. :(
hahaha that was good!! love the curb your enthusiasm music at the end
Nailed it, especially the part about why they would ask a question about something they never use.
This was so me yesterday. I messed when explaining how to implement an algorithm, I had to ask for feedback on my performance. Lucky enough, I was guided on areas I need to improve on.
"Is this still a good time?"
Wuh? Uh no it's a bad time but I've only now just realized it...?
Dude ur videos r awesome have been binging for past 2 weeks!!
I actually attended my attending a interactive coding session in short last month 😅😅😅
It happens specifically in lockdown 🤣🤣🤣
,😂😂😂😂😂😂
"Oh, were not allowed to give you any feedback, it goes against our policy."
"What policy?"
"The policy of not giving feedback."
*frowns suspiciously"
:/
the laptop on the box was a great touch
- We can't give you feedback because of the policy.
- Policy of what?
- Of giving feedbacks!
T SHIRT IS FIYAAAA, hi-chews are the best
Interviewer: you'll definitely be using it again
also interviewer: at your next interview.
BIG L's.
The way u said 'HUH' in the begging after bananas line is superb🤣🤣🤣🤣🤣🤣🤣🤣🤣
When you fuck it on the forth interview and start to realise you gonna go through this hell again 🤦🏻♂️
Interviews title in video and here comes algo expert fly by with its interview ads 😂
invert binary tree in PHP
Don't get me started on asking questions about god-knows algorithm that would never use on the job description. Damn those google-wanna-be's.
Yeah, so freaking annoying.
omg so true, most companies ask tough questions, but they don't use it much and they use tough questions for interview...
This is gonna age well! Might be back once I start applying for jobs
3:44 finally you discovered your gift in comedy 🤣🤣🤣🤣
Yep. On target. HR screenings are gems, too. I love it when the HR person has no idea what the job consists of. They say, "Do you have any questions?" I say , "yes, the job posting mentions so and so, can you tell me more about this?" HR: "I'm not the tech person". Okay! Or, I love it when the interviewer is 10 minutes late to the interview. That's ok. But if I am one minute late, they disregard the call. Unlimited PTO: phantom benefit.
The worst part about getting hired for a software job is not whether your projects are impressive or that you know the stuff that you are applying but instead whether or not you can solve an algorithm question for 15 minutes lol
Love u Man😂😂😂😂...Much better than many comedy shows...🤣🤣🤣.....
I feel called out... i just had 3 interviews yesterday lol
Man you nailed it!!! Precisely what I've been wondering what it's like to be an interviewer
You even bought "Cracking the coding interview", but never used it. That's me! It makes me look good when my friend comes over though.
I work as an SDET and can completely relate i went on a few interviews and they asked ridiculous questions that have nothing to do with automation software
This gives me flashbacks to Brooklyn 99's episode where Terry and Gina interview people but didn't use technical questions but more behavioral and related to the workplace environment/flow. That became my ideal interview. But alas, it is only an ideal currently T_T
omg i literally bought a copy of cracking the coding interview and never used
Spot on! I died on the stock options, and died again on the unlimited PTO. 😂😭
In my coding interview they asked excel questions i was prepared for reversing a linked list question and I nailed job and got job in to accounting firm and I was software Engineer their
Edit:I left the job after 3 months because I was just running automated python files for 3 hr and and was managing servers I told them to keep it employee than software Engineer