Google Virtual Onsite Interview - SDE
Anonymous User
5615
Apr 27, 2021

Recently, finished my google SDE new grad role interviews and received these following questions.
Phone Screen:

  1. https://leetcode.com/problems/stream-of-characters/

Onsite Interview:

  1. Given a set of directories, folders and files in the format
    Input:
    A - B - C - E
    A - B - D - F 
    A - X
    D - E
    D - F
    Output:
    A - B - C - E
    	  - D - F
      -X
    D - E
      - F
  2. Modified version of https://leetcode.com/problems/maximum-number-of-visible-points/
  3. Design and Implement Snake Game : https://leetcode.com/problems/design-snake-game/
    • Had to write code for placing food objects on the screen as well
  4. Modified version of https://leetcode.com/problems/word-break-ii/
Comments (7)