No Idea!
-
hackerrank.com Practice>Python>Sets>No Idea!hackerrank.com 2019. 2. 6. 16:18
No Idea! TipPlease utilize set() to check that n integers is in set A(or B)Actually, the numbers(n and m) is not matter for problemAs we can split and count each integer from input(), like belowinput().split()Create list from n integersCreate set A and set Bcheck each item in list is in set A or set B Solution # Enter your code here. Read input from STDIN. Print output to STDOUT n, m = input().s..