-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackup.js
39 lines (34 loc) · 1.03 KB
/
backup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
function IDsOfPackages(rideDuration, songDurations)
{
// WRITE YOUR CODE HERE
if (songDurations.length <=2) {
return [];
}
let result = {};
let pairs = [];
let longestSong = 0;
const totalDuration = rideDuration -30;
for (let i =0; i<songDurations.length; i++) {
if (result[songDurations[i]] !== undefined) {
const longSong = Math.max(result[songDurations[i]], i);
if (longSong > longestSong) {
pairs[0] = [result[songDurations[i]], i];
}
} else {
result[totalDuration-songDurations[i]] = i;
}
}
// let index = 0;
// let max = 0;
// for (let i = 0; i<pairs.length; i++) {
// const duration = Math.max(songDurations[pairs[i][0]], songDurations[pairs[i][1]]);
// if (duration > max) {
// index = i;
// max = duration;
// console.log(max);
// }
// }
return pairs;
}
const nums = [30,30, 25, 35, 60];
console.log(IDsOfPackages(90, nums));