billy_don
Senior Member
in degree là gì thế thím, thấy tụi nó cũng hay đặt biến như vIn-degree. Nhạt như nước ốc ao bèo
JavaScript:function maximumImportance(n: number, roads: number[][]): number { const arr = new Array(n).fill(0); for (const [from, to] of roads) { arr[from]++; arr[to]++; } arr.sort((a,b) => a - b); let val = 1, res = 0; for (const item of arr) { res+= val * item; val++ } return res; };

fake vl
