Goa is located in south India and is famous for wonderful beaches with good tourism facilities
- Travel to Kansas City Airport (MCI)
- Take a flight from MCI to Chicago
- Then Onboard a flight from Chicago to New Delhi, India
- Then take Domestic flight from New Delhi to Goa Airport
- Book a cab from airport to the port area
- Reached the destination
- List of items to bring:
- Camping tents
- Grill Chicken
- Drinks:
- Mocktails
- Beers
- Beach wears
- Trekking set
Try these Four Delicious Food items which are listed below
Food/drink item | location | Expected Price |
---|---|---|
Chicken Biryani | Hyderabad | Rs 500 |
Fish | Vizag | Rs 1000 |
Bamboo Chicken | lambasinghi | Rs 450 |
prawns | vijayawada | Rs 900 |
"Arise,awake and donot stop until the goal is reached." -Swami Vivekananda
"Truth can be stated in a thousand different ways, yet each one can be true." -Swami Vivekananda
Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. The algorithm starts at the root node (selecting some arbitrary node as the root node in the case of a graph) and explores as far as possible along each branch before backtracking.
vector<vector<int>> adj; // graph represented as an adjacency list
int n; // number of vertices
vector<bool> visited;
void dfs(int v) {
visited[v] = true;
for (int u : adj[v]) {
if (!visited[u])
dfs(u);
}
}