回答編集履歴

1

コードの間違い訂正

2017/11/07 05:46

投稿

KSwordOfHaste
KSwordOfHaste

スコア18394

test CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  def containsControlCharacter(s):
24
24
 
25
- return any(map(lambda c: ud.category(c)=='Cc', s))
25
+ return any(map(lambda c: category(c)=='Cc', s))
26
26
 
27
27
  ```
28
28