Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Find if Path Exists in Graph #86

Open
saakshii12 opened this issue Sep 30, 2023 · 3 comments
Open

Find if Path Exists in Graph #86

saakshii12 opened this issue Sep 30, 2023 · 3 comments

Comments

@saakshii12
Copy link
Contributor

Write code in the preferred language and attach output with it.

There is a bi-directional graph with n vertices, where each vertex is labeled from 0 to n - 1 (inclusive). The edges in the graph are represented as a 2D integer array edges, where each edges[i] = [ui, vi] denotes a bi-directional edge between vertex ui and vertex vi. Every vertex pair is connected by at most one edge, and no vertex has an edge to itself.

You want to determine if there is a valid path that exists from vertex source to vertex destination.

Given edges and the integers n, source, and destination, return true if there is a valid path from source to destination, or false otherwise.

Example 1:
image
Input: n = 3, edges = [[0,1],[1,2],[2,0]], source = 0, destination = 2
Output: true
Explanation: There are two paths from vertex 0 to vertex 2:

  • 0 → 1 → 2
  • 0 → 2

Example 2:
image
Input: n = 6, edges = [[0,1],[0,2],[3,5],[5,4],[4,3]], source = 0, destination = 5
Output: false
Explanation: There is no path from vertex 0 to vertex 5.

@MOHIT-PANDEY215
Copy link

MOHIT-PANDEY215 commented Sep 30, 2023

Hey @saakshii12 Please assign this issue to me.

@Swetathakare
Copy link

Could you assign this issue to me ?
Name : Sweta Thakare
Roll no : UCE2022654
e.mail :[[email protected]]

@Lavanyawaghulde
Copy link
Contributor

@saakshii12 I would like to work on this issue. Could you assign this issue it me?
Lavanya Waghulde
UEC2022362
SY E&TC
[email protected]
Cummins college of Engineering

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment