Google L4 Telephone Screen

google logo
google
SDE II
April 7, 20253 reads

Summary

I had a telephone screen with Google for an L4 role where I was presented with the 'Linear Chess' problem.

Full Experience

Linear Chess


Given two strings, start and target. Is it possible to reach target from start given the conditions.

  1. String can contain "L", "R" or "_".
  2. L denotes a left pawn which can move only in left direction, R denotes a right pawn which can move only in right direction.
  3. Pawns can't capture or jump over other pawns.

Example : start = "LL" target = "L_L_" output - True

Interview Questions (1)

Q1
Linear Chess
Data Structures & Algorithms

Given two strings, start and target. Is it possible to reach target from start given the conditions.

  1. String can contain "L", "R" or "_".
  2. L denotes a left pawn which can move only in left direction, R denotes a right pawn which can move only in right direction.
  3. Pawns can't capture or jump over other pawns.

Example : start = "LL" target = "L_L_" output - True

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!