Hackerrank 레벨업하기
문제
Compare the Triplets
def compareTriplets(a, b):
point = [0, 0]
for i in range(len(a)):
if a[i] > b[i]:
point[0] +=1
elif a[i] < b[i]:
point[1] +=1
else:
pass
return point
궁금하신게 있다면 메일 주세요.
k2h7913@daum.net
cafehero123@gmail.com