본문으로 건너뛰기

BOJ 11328

11328 Strfry

Clicking the heading will take you to the BOJ problem.

Solution

문자열은 sort()를 사용할 수 없다. sorted()를 사용하자.

n = int(input())

for _ in range(n):
    a, b = input().split()
    if sorted(b) == sorted(a):
        print("Possible")
    else:
        print("Impossible")