-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountValleys.js
31 lines (23 loc) · 1.28 KB
/
countValleys.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
/*
Gary is an avid hiker. He tracks his hikes meticulously, paying close attention to small details like topography. During his last hike he took exactly steps. For every step he took, he noted if it was an uphill, , or a downhill, step. Gary's hikes start and end at sea level and each step up or down represents a unit change in altitude. We define the following terms:
A mountain is a sequence of consecutive steps above sea level, starting with a step up from sea level and ending with a step down to sea level.
A valley is a sequence of consecutive steps below sea level, starting with a step down from sea level and ending with a step up to sea level.
Given Gary's sequence of up and down steps during his last hike, find and print the number of valleys he walked through.
For example, if Gary's path is s=[DDUUUUDD] , he first enters a valley units deep. Then he climbs out an up onto a mountain units high. Finally, he returns to sea level and ends his hike.
*/
const countValles = steps => {
let latitude = 0
let valleys = 0
let previous = 0
for (let i = 0, c = ''; c = steps.charAt(i); i++) {
if(c === 'U') {
latitude++
} else if (c === 'D') {
latitude--
previous = i -1
if(latitude <= -2 && (steps.charAt(previous) == 'D'))
valleys += 1
}
}
return valleys
}