Skip to content

Commit

Permalink
Add day 55
Browse files Browse the repository at this point in the history
  • Loading branch information
MadhavBahl committed Mar 6, 2019
1 parent d17c655 commit 704ae9c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -81,6 +81,8 @@ Motivate yourself to code daily till 60 days, and see the magic! Coding will bec
| [Day 51](./day51) | [Circular List](./day51) | [http://codetoexpress.tech/dc/day51/](http://codetoexpress.tech/dc/day51/) | **Intermediate** |
| [Day 52](./day52) | [Sort and Reverse](./day52) | [http://codetoexpress.tech/dc/day52/](http://codetoexpress.tech/dc/day52/) | **Intermediate** |
| [Day 53](./day53) | [Implement a Tree](./day53) | [http://codetoexpress.tech/dc/day53/](http://codetoexpress.tech/dc/day53/) | **Intermediate** |
| [Day 54](./day54) | [Breadth First Search](./day54) | [http://codetoexpress.tech/dc/day54/](http://codetoexpress.tech/dc/day54/) | **Intermediate** |
| [Day 55](./day55) | [Depth First Search](./day55) | [http://codetoexpress.tech/dc/day55/](http://codetoexpress.tech/dc/day55/) | **Intermediate** |

## [More Problems](./BONUS/README.md)

Expand Down
1 change: 1 addition & 0 deletions day55/JavaScript/DFS.js
@@ -0,0 +1 @@
// To be added
19 changes: 19 additions & 0 deletions day55/README.md
@@ -0,0 +1,19 @@
![cover](./cover.png)

# Day 55 - Depth First Search

Ques) Write a program to implement the depth first traversal,

1. Inorder Traversal
2. Preorder Traversal
3. Postorder Traversal

## Solution

## JavaScript Implementation

### [Solution](./JavaScript/BFS.js)

```js
// To be added
```
Binary file added day55/cover.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 704ae9c

Please sign in to comment.