Skip to content

Commit

Permalink
Update CODING_CONCEPTS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jdnichollsc authored Mar 22, 2022
1 parent e9db86d commit 6db616f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CODING_CONCEPTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@ Starts at the root node and explores as far as possible along each branch before
#### Breadth-first search (BFS)
Starts at the tree root and explores all of the neighbor nodes at the present depth prior to moving on to the nodes at the next depth level, with a BFS you push the children onto the end of a queue, so they will be popped and processed after everything else. It's easily implemented via a queue, including corecursively.

## Remember
Key points to be successful in the coding exercise:
* Drive the interview
* Explored the problem
* Reason about your decisions
* Think about trade-offs

## Credits:
- [Tech Interview Handbook](https://yangshun.github.io/tech-interview-handbook)
- [Coding Interview University](https://github.com/jwasham/coding-interview-university)
Expand Down

0 comments on commit 6db616f

Please sign in to comment.