回答編集履歴
1
修正
test
CHANGED
@@ -10,11 +10,11 @@
|
|
10
10
|
|
11
11
|
```Python
|
12
12
|
|
13
|
-
def inclusive_index(lst,
|
13
|
+
def inclusive_index(lst, purpose):
|
14
14
|
|
15
15
|
for i, e in enumerate(lst):
|
16
16
|
|
17
|
-
if
|
17
|
+
if purpose in e: return i
|
18
18
|
|
19
19
|
|
20
20
|
|