[HackerRank] Counting Valleys
525 ワード
[问题链接]
[入力]
int steps: the number of steps on the hike
string path: a string describing the path
[出力]
int: the number of valleys traversed
[コード]
def countingValleys(steps, path):
# Write your code here
result = 0
pos = 0
for i in range(steps):
if path[i] == 'U':
pos +=1
else:
if pos==0:
result +=1
pos -=1
return result
Reference
この問題について([HackerRank] Counting Valleys), 我々は、より多くの情報をここで見つけました https://velog.io/@jongmin97/HackerRank-Counting-Valleysテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol