回答編集履歴

1

書式文字列を修正しました。

2017/09/06 05:33

投稿

mosa
mosa

スコア218

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ```kotlin
6
6
 
7
- fun Int.toStringWithSeparator() = "%,3d".format(this)
7
+ fun Int.toStringWithSeparator() = "%,d".format(this)
8
8
 
9
9
  ```
10
10