[문제 링크] 👇 SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.comSolutionT = int(input()) # 테스트 케이스 수for test_case in range(1, T + 1): word = input().strip() word = sorted(word) # 정렬하기 result = "" for i in word: if word.count(i) % 2 != 0: if i not in result: result += i if len(result) == 0: result = "Good" print(f..