ソースを参照

Modify another exercise to test testing multiple

Logan Stucki 9 年 前
コミット
f766928533
コミット者のEメールアドレスに関連付けられたアカウントが存在しません
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      exercises/wordy/src/example/java/WordProblemSolver.java

+ 1
- 1
exercises/wordy/src/example/java/WordProblemSolver.java ファイルの表示

@@ -1,7 +1,7 @@
1 1
 import java.util.regex.Matcher;
2 2
 import java.util.regex.Pattern;
3 3
 
4
-final class WordProblemSolver {
4
+final class WordProblemSolver { 
5 5
 
6 6
     private static final String INTEGER_REGEX_STRING = "(-?\\d+)";
7 7