diff options
Diffstat (limited to 'progs/dont_care/a789.py')
-rw-r--r-- | progs/dont_care/a789.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/dont_care/a789.py b/progs/dont_care/a789.py new file mode 100644 index 0000000..06bda85 --- /dev/null +++ b/progs/dont_care/a789.py @@ -0,0 +1,3 @@ +def filter_oddnumbers(nums):
+ odd_nums = list(filter(lambda x: x%2 != 0, nums))
+ return odd_nums
\ No newline at end of file |