Google-Developer-Student-Club-CCOEW / Competitive-Programming-2023-GDSC-CUMMINS-X-GDSC-MMCOE

Welcome to the Hacktoberfest 2023 Competitive-Programming Cohort for Cummins College and MMCOE students! To request issue assignment, create a pull request, providing: 1. Full Name πŸ§‘β€πŸŽ“ 2.Email πŸ“§ 3.College ID (RNO) πŸ”’ 4.Branch of Study.πŸ“š 5. Year πŸ“† .The Cummins College and MMCOE students' PRs will be considered only. Thank you!
9 stars 69 forks source link

Find if Path Exists in Graph #86

Open saakshii12 opened 1 year ago

saakshii12 commented 1 year ago

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:

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 commented 1 year ago

Hey @saakshii12 Please assign this issue to me.

Swetathakare commented 11 months ago

Could you assign this issue to me ? Name : Sweta Thakare Roll no : UCE2022654 e.mail :[sweta.thakare@cumminscollege.in]

Lavanyawaghulde commented 11 months ago

@saakshii12 I would like to work on this issue. Could you assign this issue it me? Lavanya Waghulde UEC2022362 SY E&TC lavanya.waghulde@cumminscollege.in Cummins college of Engineering