Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 285 Bytes

1919.md

File metadata and controls

17 lines (13 loc) · 285 Bytes
description
백준 1919번

�애너그램 - 1919

// Some code
a = list(input())
b = list(input())

a1, b1 = a[:], b[:]

list1 = [x for x in a if not x in b1 or b1.remove(x)]
list2 = [x for x in b if not x in a1 or a1.remove(x)]
print(len(list1) + len(list2))