[문제 링크] 👇 SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 풀이첫 번째 길이와 두 번째 길이가 같으면 세 번째 길이를 반환한다.두 번째 길이와 세 번째 길이가 같으면 첫 번째 길이를 반환한다.첫 번째 길이와 세 번째 길이가 같으면 두 번째 길이를 반환한다. Solutiontest_case = int(input())for tc in range(1, test_case + 1): square = list(map(int, input().split())) result = 0 if square[0] == square[1]: result = square[2] elif square[..