[SW Expert Academy] 3456. 직사각형 길이 찾기

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWFPmsqqALwDFAV0


a, b, c에 대해 a = b이면 c를 출력, b = c이면 a를 출력, c = a이면 b를 출력하면 됩니다. XOR을 이용해 조금 영리하게 코딩을 했습니다.


https://github.com/blisstoner/SW-Expert-Academy/blob/master/3456.cpp

  Comments