回答編集履歴

1

修正

2019/12/24 00:10

投稿

LouiS0616
LouiS0616

スコア35660

test CHANGED
@@ -10,11 +10,11 @@
10
10
 
11
11
  ```Python
12
12
 
13
- def inclusive_index(lst, chunk):
13
+ def inclusive_index(lst, purpose):
14
14
 
15
15
  for i, e in enumerate(lst):
16
16
 
17
- if chunk in e: return i
17
+ if purpose in e: return i
18
18
 
19
19
 
20
20