about summary refs log tree commit diff
path: root/deepmind
AgeCommit message (Collapse)AuthorFilesLines
2020-02-08 Practice writing, printing, traversing matricesWilliam Carroll1-0/+45
- generate_board: writing - print_board: reading - neighbords: reading I'm working up to creating a function to initialize a game board where no three adjacent cells either vertically or horizontally should be the same value.
2020-02-08 Practice matrix traversalsWilliam Carroll1-0/+59
Recently I've been asked a few interview questions that involve reading from or writing to a grid, matrix, game board, etc. I am not as fast as I'd like to be at this, so I'm going practice. Here I'm practicing reading from existing matrices. I should practice writing to empty boards, reading neigboring cells, wrapping around the board (in the case of Conway's Game of Life), and other useful practices.
2020-02-06 Partition deepmind directory into two partsWilliam Carroll12-0/+57
Since I did not pass my one-site interview with DM, but I have been invited to attempt again, I decided to partition this directory into two parts: 1. part_one: Hosting the exercises that I completed before my first attempt at earning the job. 2. part_two: Hosting the exercise that I will complete before my second attempt at earning the job.
2020-01-29 Splice ./universe directory into ./William Carroll11-0/+594
Manually merging: - README.md: I added the description from universe/README.md into the heading of dotfiles/README.md. - .envrc: dotfiles/.envrc was a superset of universe/.envrc - .gitignore: Adding some of the ignored patterns from universe/.gitignore to dotfiles/.gitignore Everything else here should be a simple rename.