回答編集履歴

1

修正

2021/10/13 08:42

投稿

ppaul
ppaul

スコア24666

test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  def search(head, ext, root='.'):
10
10
 
11
- return glob(f'{root}/**/{head}*.{ext}')
11
+ return glob(f'{root}/**/{head}*.{ext}', recursive=True))
12
12
 
13
13
 
14
14