Files
30-seconds-of-code/test/compact/compact.py
Rohit Tanwar 385bf72a3e readme-script
2018-02-20 22:42:11 +05:30

2 lines
65 B
Python

def compact(arr):
return list(filter(lambda x: bool(x), arr))