index
:
clp.git
main
A small Python compiler with optimizer written in Java
Ubuntu
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
progs
/
a923.py
blob: 51e484139653319aad1e1da76367be63de0251c7 (
plain
)
1
2
3
def union_elements(test_tup1, test_tup2): res = tuple(set(test_tup1 + test_tup2)) return (res)