-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
a little context
- Loading branch information
Showing
1 changed file
with
4 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Interview puzzle solution | ||
Prompt was to build an algorithm for an autonomous vehicle for a ride sharing company. The problem space was simplified to a finite, grid-shaped city, | ||
and a situation in which the car could only move 1 block at a time and we only cared about its position at the vertecies in the grid. Requests at each | ||
timestep would be json that looked like this: `[{'name': 'Fred','start': (3,5),'end': (8,7)}, {'name': 'Fred','start': (6,1),'end': (10,2)}]` |