Amazon Interview Question — LeetCode 1135

Y Tech
2 min readMar 7, 2022

In this post, we are going to discuss leetcode 1135 — Connecting Cities With Minimum Cost, which is asked in Amazon interviews.

Problem Analysis

There are n cities labeled from 1 to n. You are given the integer n and an array connections where connections[i] = [xi, yi, costi] indicates that the cost of connecting city xi and city yi (bidirectional connection) is costi.

Return the minimum cost to connect all the n cities such that there is at least one path between each pair of cities. If it is

--

--