-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_filtering.py
35 lines (22 loc) · 945 Bytes
/
list_filtering.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""
Create a function that takes a list of non-negative integers and strings and returns a new list with the strings
filtered out.
"""
def filter_list(array):
return list(filter(lambda x: type(x) == int, array))
def filter_list_comprehension(array):
return [x for x in array if type(x) == int]
import datetime
start = datetime.datetime.now()
assert filter_list([1, 2, 'a', 'b']) == [1, 2]
assert filter_list([1, 'a', 'b', 0, 15]) == [1, 0, 15]
assert filter_list([1, 2, 'aasf', '1', '123', 123]) == [1, 2, 123]
stop = datetime.datetime.now()
print(stop - start)
start = datetime.datetime.now()
assert filter_list_comprehension([1, 2, 'a', 'b']) == [1, 2]
assert filter_list_comprehension([1, 'a', 'b', 0, 15]) == [1, 0, 15]
assert filter_list_comprehension([1, 2, 'aasf', '1', '123', 123]) == [1, 2, 123]
stop = datetime.datetime.now()
print(stop - start)
# in case you're wondering, the comprehensions appear to be faster