Giter VIP home page Giter VIP logo

googleprep's Introduction

Learning

Algorithms Live!

youtube | blogspot

Recommended: Do them All!

  • Watch episode and solve each problem on your own (most have online judges)
  • Skim coding section to potentially pick up some new coding techniques

Minimal: Do the following:

Learning From Contests

Any time you fail a problem in a contest, look at the solutions afterwards. If it uses a concept you've never heard of, learn that and solve the problem. You will almost certainly see it again somewhere.

Contests

  • Leetcode: Saturday 7:30 PST (1 hour 30 minutes)
  • Codeforces: 1-2 per week but latest is like 8am PST (2 hours)
  • Codechef: 1 Long Challenge (2 weekends long)
  • Google Code Jam: Once a year in April, but usually very fun problems.
  • Find more contests: clist.by

I recommend doing the Long challenge every month, and doing Leetcode as you are in the mood. Leetcode is most representative of interview but less effective for learning. The long contest gives you time to be creative and explore lots of solutions.

It's important to not look up the answer immediately. The value in spending hours considering failing approaches is that you learn and gain an intuition for what does not work. That way, in an interview, you spend your time exploring only solutions that have potential.

Goals:

Division 1 on Codeforces or Codechef and completing the weekly Leetcode contest in < 1 hour is overkill but a good benchmark to strive for anyway.

Learning Objectives

  • Learn Algorithmic concepts
    • This is actually the least important, complicated theory questions are pretty rare in interviews. Segment Trees and Flow is like the absolute limit
  • Get better at coding/debugging
    • Debugging problems like these is very hard, and extremely costly in a programming contest. You need to learn how to identify errors quickly and gain an intuition for common edge cases.
    • You need to learn a programming style that minimizes code written and potential mistakes. Ex: sum all neighbors:
  for (int x = 0; x < N; x++)
    for (int y = 0; y < N; y++)
      int sum = 0;
      for (int dx =  -1; dx <= 1; dx++)
        for (int dy = -1; dy <= 1; dy++)
          sum += inBounds(x+dx, y+dy) ? arr[x+dx][y+dy] : 0;
	
public boolean inBounds(int x, int y) {
  return (x >= 0 && y >= 0 && x < N && y < N);
} 

Having written this code many times this is way cleaner to debug than having a bunch of if statements

  • Articulating your thought process
    • Easiest way to fuckup an interview is to not say anything. You MUST explicitly say what you are thinking even if you have no idea. Most interviewers will give you useful hints so assume any hint they give you is the right answer.
    • There should be no dead air even when you are coding

Interview Script

  1. Ask clarifying questions (bounds, types, edge cases)
  2. Propose a brute force solution (and describe its runtime)
  3. (Time permitting) do the brute force on a small example)
  4. Propose an optimized solution (and describe its runtime)
  5. Do the optimized on a small example (this will also help you find logical errors)
  6. Code the optimized solution
  7. Throw out some edge cases that your solution will handle

Behavioral Questions

  • Idk I'm not good at these apparently

Questions for Interviewer

  • Tell me about your work
    • Works every time

Practice Interview

Once you feel like you have mastered most concepts, give these questions a try. Try to complete each in 45 minutes or less.

List of Questions to do

  • merge k sorted lists

    Open after solving

    This is about 30% of all interview questions, so I hope you solved it.

  • uncrossed lines

    Open after solving

    It's pretty common especially for Google to hide standard problems behind some logical transformation that you need to think through. In an interview you would want to be talking through your though process with your inteviewer, and they might give you hints to put you on track. Here's some more DP practice: count all valid pickup and delivery options

  • smallest sufficient team

    Open after solving

    I hope you watched the Bitmask DP video, it's not as common in interviews, but if you can't find an optimal solution you can maybe break out the bitmask DP before moving on to something more optimized. Here's some more practice with bitmasks: maximum students taking exam

Other questions I like:

Some questions with elegant or clever solutions:

Practice with a Googler

Ask a friend to give you a mock interview, behavioral and technical. I'm at "".join("bking2025", "@", "gmail.com")

googleprep's People

Contributors

15kingben avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.