summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a568.py
blob: 817b96b2970981c399860f6181b3afca426db876 (plain)
1
2
3
def inversion_elements(test_tup):
  res = tuple(list(map(lambda x: ~x, list(test_tup))))
  return (res)