Day 10 - Graph Traversal (DFS and BFS)
Introduction

Graph Traversal (BFS and DFS)

Definition

GIF
void func() {
    // Some code
    func(); // Function call
    // Some code
}