Skip to content

Commit

Permalink
[boj] 22.03.29 11328 solved
Browse files Browse the repository at this point in the history
  • Loading branch information
JangAyeon committed Mar 29, 2022
1 parent 5df1e09 commit 4a21f31
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions 장아연/week2/11328.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 22.03.29
# 백준 11328 : https://www.acmicpc.net/problem/11328

N = int(input())
res = []
for _ in range(N):
a, b = input().split()
if sorted(a) != sorted(b):
print("Impossible")
else:
print("Possible")

0 comments on commit 4a21f31

Please sign in to comment.