Python 연습 12: 숨겨진 공 찾기
의문
설명
AB
또는 BA
로 나타낼 수 있습니다. 예
cup_swapping(["AB", "CA"]) ➞ "C"
cup_swapping(["AC", "CA", "CA", "AC"]) ➞ "B"
cup_swapping(["BA", "AC", "CA", "BC"]) ➞ "A"
내 솔루션
def cup_swapping(swaps):
current_position = "B"
for move in swaps:
if current_position in move:
if current_position == move[0]:
current_position = move[1]
else:
current_position = move[0]
return current_position
타인에 의한 해결
방법 1
def cup_swapping(swaps):
current_position = "B"
for move in swaps:
if current_position in move:
current_position = move[1] if move[0] == current_position else move[0]
return current_position
방법 2
def cup_swapping(swaps, current_position="B"):
for move in swaps:
current_position = move.replace(current_position, "") if current_position in move else current_position
return current_position
내 반성
신용 거래
edabit에서 발견된 챌린지
Reference
이 문제에 관하여(Python 연습 12: 숨겨진 공 찾기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mathewchan/python-exercise-12-find-the-hidden-ball-4hkc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)