-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfurther_study.py
220 lines (151 loc) · 5.4 KB
/
further_study.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
from list_operations import *
# Further Study / Extra Credit
# ----------------------------
#
# In this section you will implement your own versions of the standard list methods.
# You should use only the primitive operations from Part 1 and 2 in your implementations.
# For loops are also allowed, such as the following:
# for element in some_list:
# # Do something with element
#
# Each custom method imitates a built-in list method, as described by the docstring
# for each function. Play with the built-in methods in the Python REPL to get a feel
# for how they work before trying to write your custom version.
def custom_len(input_list):
"""
like len(input_list), should return the number of items in the list
For example:
>>> custom_len(['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', 'Do'])
8
"""
length = 0
for item in input_list:
length += 1
return length
# For the next four exercises, you'll need to be clever and think about ways
# to use "list slice assignment" to solve these problems.
#
# NOTE: these are especially contrived--for example, you wouldn't really want
# to typically append things to a list like this (you'd want to to use the
# list.append() method), but we want you to practice list slicing assignment
# in different ways so it sticks in your brain.
def custom_append(input_list, value):
"""
like input_list.append(value), should add the value to the end of the list
and return nothing.
For example:
>>> notes = ['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', 'Do']
>>> custom_append(notes, 'Re')
>>> notes == ['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', 'Do', 'Re']
True
"""
input_list[-1:] = [input_list[-1], value]
def custom_extend(input_list, second_list):
"""
like input_list.extend(second_list), should append every item in the second
list to the end of the first list and return nothing
For example:
>>> months = ['Jan', 'Feb', 'Mar']
>>> custom_extend(months, ['Apr', 'May'])
>>> months == ['Jan', 'Feb', 'Mar', 'Apr', 'May']
True
"""
for item in second_list:
input_list[-1:] = [input_list[-1], item]
def custom_insert(input_list, index, value):
"""
like input_list.insert(index, value), should insert (not replace) the value
at the specified index of the input list and return nothing
For example:
>>> months = ['Jan', 'Mar']
>>> custom_insert(months, 1, 'Feb')
>>> months == ['Jan', 'Feb', 'Mar']
True
"""
input_list[index:index+1] = [value, input_list[index]]
def custom_remove(input_list, value):
"""
like input_list.remove(value), should remove the first item of the
value specified and return nothing
For example:
>>> notes = ['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', 'Do']
>>> custom_remove(notes, 'Do')
>>> notes == ['Re', 'Mi', 'Fa', 'So', 'La', 'Ti', 'Do']
True
"""
for index, value in enumerate(input_list):
if input_list[index] == value:
del input_list[index]
break
def custom_pop(input_list):
"""
like input_list.pop(), should remove the last item in the list and
return it
For example:
>>> custom_pop(['Jan', 'Feb', 'March'])
'March'
"""
return None
def custom_index(input_list, value):
"""
like input_list.index(value), should return the index of the first item
which matches the specified value
For example:
>>> custom_index(['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', 'Do'], 'Re')
1
"""
return 0
def custom_count(input_list, value):
"""
like input_list.count(value), should return the number of times the specified
value appears in the list.
For example:
>>> custom_count(['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', 'Do'], 'Do')
2
"""
return 0
def custom_reverse(input_list):
"""
like input_list.reverse(), should reverse the elements of the original list
and return nothing (we call this reversing "in place")
For example:
>>> multiples = [0, 3, 6, 9, 12, 15, 18, 21, 24, 27]
>>> custom_reverse(multiples)
>>> multiples == [27, 24, 21, 18, 15, 12, 9, 6, 3, 0]
True
"""
pass
def custom_contains(input_list, value):
"""
like (value in input_list), should return True if the list contains the
specified value and False if it does not. Remember, do not use the `if X in Y`
statement -- find another way to solve it!
For example:
>>> custom_contains([0, 3, 6, 9, 12, 15, 18, 21, 24], 23)
False
>>> custom_contains([0, 3, 6, 9, 12, 15, 18, 21, 24], 24)
True
"""
return None
def custom_equality(some_list, another_list):
"""
like (some_list == another_list), should return True if both lists contain
the same values in the same indexes
For example:
>>> custom_equality(['Jan', 'Feb', 'Mar'], ['Jan', 'Feb', 'Mar'])
True
>>> custom_equality(['Jan', 'Feb', 'Mar'], ['Jan', 'Mar', 'Feb'])
False
"""
return None
##############################################################################
# END OF EXTRA CREDIT
#
# Please ask for a code review. Also, give your partner a high-five!
##############################################################################
# This is the part were we actually run the doctests.
if __name__ == "__main__":
import doctest
result = doctest.testmod()
if result.failed == 0:
print "ALL TESTS PASSED"