otasevic | 7 years ago | on: Solving dynamic programming interview problems
otasevic's comments
otasevic | 7 years ago | on: Solving dynamic programming interview problems
otasevic | 7 years ago | on: Solving dynamic programming interview problems
otasevic | 7 years ago | on: Solving dynamic programming interview problems
However, they're a reality for many interview loops, so it's better to be prepared.
Btw, what are some things that your company tests for, if you don't mind sharing?
otasevic | 7 years ago | on: Solving dynamic programming interview problems
But essentially you see that the equation is S^2 - S - 2L < 0
from that, you can solve that the roots of the function are: (1) 1/2 + sqrt(2L) and (2) 1/2 - sqrt(2L)
That means that (S-1/2-sqrt(2L)) * (S-1/2+sqrt(2L)) < 0
The second term is always positive, which means that we need to make the first term negative in order for the inequality to hold.
=> S < 1/2 + sqrt(2L) which leads to O(sqrt(L)) when you let L approach infinity.
Does this make sense?
otasevic | 7 years ago | on: Solving dynamic programming interview problems
otasevic | 7 years ago | on: Solving dynamic programming interview problems
otasevic | 7 years ago | on: Solving dynamic programming interview problems
otasevic | 7 years ago | on: Solving dynamic programming interview problems
otasevic | 8 years ago | on: Hired – Technical Interview Score
As far as the experience of the interviewers goes, we're pretty careful about it in our on-boarding process. Even more than the experience we look for open-minded engineers who are willing to question their evaluation and constantly work on improving the overall process.
Re: feedback at Google. It's hard for companies to give you access to feedback because of potential legal repercussions and also because it is very hard for them to deal with back and forth that would inevitably occur.
That's another big point that we emphasized early on that seemed like a crazy proposition - fully transparent interview process. That is, anything that a company would see, you see beforehand.
otasevic | 8 years ago | on: Hired – Technical Interview Score
One way in which we're approaching the stress of interviews is to strip away the bad outcomes and allow people to approach interviews as "there is nothing to lose". Another way is experimenting with different types of interviews such as group interviews or project based interviews. Sometimes the issue with those experiments though is that they're even harder to standardize.
I think that in addition to what you said, we need to get to a measurable level of improvement. We try to measure the repeatability of our sessions in two ways: 1) when the same session is evaluated by two different interviewers, the ratings across dimensions should be equivalent and 2) (this one is harder to experiment control) when the same person does two interviews, they should be evaluated equivalently on the intersection of sets of things that were evaluated. By optimizing for these two ways of repeatability, we are hopefully going to move toward much more objective driven evaluations that capture the engineer's understanding of different areas and not just the spur of the moment.
otasevic | 9 years ago | on: Show HN: Interview with ex-Google engineers, get feedback and land a job
It's a hard problem that requires people to approach it seriously. And it is only getting worse with a high growth in number of people getting into tech.
It's interesting to try to solve it.