[AtCoder] E - Packing Under Range RegulationsRead more
[AtCoder] F - Dist Max 2Read more
[AtCoder] G - 01SequenceRead more
[AtCoder] C - LIS to Original SequenceRead more
[Codeforces] Round #290 (Div. 2) C. Fox And NamesRead more
[Codeforces] Round #293 (Div. 2) A. Vitaly and StringsRead more
[Codeforces] Educational Round 139 (Rated for Div. 2) D. Lucky ChainsRead more
[Codeforces] Round #837 (Div. 2) C. Hossam and TraineesRead more
[Codeforces] Polynomial Round 2022 (Div. 1 + Div. 2, Rated, Prizes!) D. Same Count OneRead more
[LeetCode] Find if Path Exists in Graph

1971. Find if Path Exists in Graph

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.

Read more