Leetcode 1557. Minimum Number of Vertices to Reach All Nodes

Posted on Sat 08 February 2025 in Leetcode • Tagged with topological-sorting

Question Link : https://leetcode.com/problems/minimum-number-of-vertices-to-reach-all-nodes/

Difficulty: Medium

Premium: False

Question

Given a directed acyclic graph, with n vertices numbered from 0 to n-1, and an array edges where edges[i] = [fromi, toi] represents a directed edge from node fromi to node toi. Find the smallest set of vertices …


Continue reading

Leetcode 0207. Course Schedule

Posted on Sat 04 January 2025 in Leetcode • Tagged with topological-sorting, bfs-layered

Question Link : https://leetcode.com/problems/course-schedule/

Difficulty: Medium

Premium: False

Question

There are a total of numCourses courses you have to take, labeled from 0 to numCourses - 1. You are given an array prerequisites where prerequisites[i] = [ai, bi] indicates that you must take course bi first if you …


Continue reading

Leetcode 0269. Alien Dictionary

Posted on Fri 06 December 2024 in Leetcode Premium • Tagged with topological-sorting

Question Link : https://leetcode.com/problems/alien-dictionary/

Difficulty: Hard

Premium: True

Question

There is a new alien language that uses the English alphabet. However, the order of the letters is unknown to you. You are given a list of strings words from the alien language's dictionary. Now it is claimed …


Continue reading

Leetcode 0953. Verifying an Alien Dictionary

Posted on Fri 06 December 2024 in Leetcode • Tagged with hash-map, topological-sorting

Question Link : https://leetcode.com/problems/verifying-an-alien-dictionary/

Difficulty: Easy

Premium: False

Question

In an alien language, surprisingly, they also use English lowercase letters, but possibly in a different order. The order of the alphabet is some permutation of lowercase letters. Given a sequence of words written in the alien language …


Continue reading