shlogg · Early preview
Md Ariful Haque @mah-shamim

Software Engineering And Web Development Solutions

Implementing Floyd-Warshall's algorithm to find shortest paths between all pairs of cities and then calculating reachable cities within distanceThreshold.

1334. Find the City With the Smallest Number of Neighbors at a Threshold Distance
Medium
There are n cities numbered from 0 to n-1. Given the array edges where edges[i] = [fromi, toi, weighti] represents a bidirectional and weighted edge between cities fromi and toi, and given the integer distanceThreshold.
Return the city with the smallest number of cities that are reachable through some path and whose distance is at most distanceThreshold, If there are multiple such cities, return the city with the greatest number.
Notice that the distance of a path connecting cities i and j is equal to the...