관리 메뉴

CHIqueen

[Intro] areEquallyStrong 본문

프로그래밍/CodeSignal

[Intro] areEquallyStrong

CHIqueen 2020. 3. 17. 16:45
def areEquallyStrong(yourLeft, yourRight, friendsLeft, friendsRight):
    return (yourLeft == friendsLeft or yourLeft == friendsRight) and (yourRight == friendsLeft or yourRight == friendsRight)

굉장히 쓰잘떼기 없어보이지만 통과다

 

return {yourLeft, yourRight} == {friendsLeft, friendsRight}

파이썬의 set을 잘 사용한 예시

'프로그래밍 > CodeSignal' 카테고리의 다른 글

[Intro] isIPv4Addres  (0) 2020.03.17
[Intro] arrayMaximalAdjacentDifference  (0) 2020.03.17
[Intro] palindromeRearranging  (0) 2020.03.17
[Intro] Are Similar?  (0) 2020.03.17
[Intro] Add Border  (0) 2020.03.17
Comments