Posts by nano.galvao • 145 points
1 post
-
4
votes4
answers392
viewsA: Program that returns the unusual numbers of two lists (python)
def elementos_nao_comuns(a,b): return list(set(a).symmetric_difference(set(b)))
1 post
4
votes4
answers392
viewsdef elementos_nao_comuns(a,b): return list(set(a).symmetric_difference(set(b)))