목록Programming/Cracking the Code interview (4)
MJay
Edit Cracking the code interview - 4 Data StructuresHash TablesWhile not all problems can be solved with hash tables, a shocking number of interview prob-lems can be Before your interview, make sure to practice both using and implementing hash tables 1.public HashMap buildMap(Student[] students) { 2.HashMap map = new HashMap(); 3.for (Student s : students) map.put(s.getId(), s); 4.return map; 5...
Edit Cracking the Code Interview - 3 Resume에 들어가야 할 것들 Resume screeners look for the same things that interviewers do: »Are you smart? »Can you code? 프로젝트랑 관련된 것들Language 기재하는 법Resume 준비하는 건 p24 부근인데 취업할때 해도 될듯 몇가지 핵심 사항만 정리 Must Know프로젝트 하면서 느낀 점 말할때(Situation / Action / Response, Issue 1 / Issue 2 / Issue 3, etc하지 말하야 햘 것들 %23%23%20Cracking%20the%20Code%20Interview%20-%203%0A@%28%uC720%uD559%2..
Edit Cracking the code interview - 1 Write Code on Paper 먼저 interview problems 은 종이에 먼저 쓰고 그 다음에 컴퓨터에 쓰자 Resume 틈틈히 어떻게 쓸지 고민을 해보자Talk Out Loud - 크게 크게 말하자Cracking the code interview - 이 책은 fancy research가아닌 인터뷰를 도와주는 책이다구성 Algorithm , Coding, Design Question * Microsoft* Defnitely Prepare: “Why do you want to work for Microsoft?” In this question, Microsoft wants to see that you’re passionate a..
Edit Cracking the code interview - 2 Google Interview Definitely Prepare As a web-based company, Google cares about how to design a scalable system. So, make sure you prepare for questions from “System Design and Memory Limits” Additionally, many Google interviewers will ask questions involving Bit Ma-nipulation, so please brush up on these questions. Apple Interview Definitely Prepare If you kn..