You are viewing a single comment's thread. Return to all comments →
#Python def gamingArray(arr): cuts = 0 current = 0 for val in arr: if val > current: cuts += 1 current = val return "ANDY" if cuts % 2 == 0 else "BOB"
Seems like cookies are disabled on this browser, please enable them to open this website
Gaming Array 1
You are viewing a single comment's thread. Return to all comments →