Set .difference() Operation
-
Practice>Python>Sets>Set .difference() Operationhackerrank.com 2019. 2. 27. 12:47
hackerrank.comSet .difference() OperationProblem link : https://www.hackerrank.com/challenges/py-set-difference-operation/problem?utm_campaign=challenge-recommendation&utm_medium=email&utm_source=24-hour-campaign&h_r=next-challenge&h_v=zenDifficulty : Easy TipJust use difference() method, it is all you should know to solve this problemSolution input() s1 = set(input().split(' ')) input() s2 = se..