Skip to content

Commit

Permalink
chore: println 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
rldnrl committed Oct 9, 2023
1 parent 1e33937 commit 1a3ff3e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/programmers/lv2/CheckDistanceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ void solutionTest() {
String[][] input1 = {{"POOOP", "OXXOX", "OPXPX", "OOXOX", "POXXP"}, {"POOPX", "OXPXP", "PXXXO", "OXXXO", "OOOPP"}, {"PXOPX", "OXOXP", "OXPOX", "OXXOP", "PXPOX"}, {"OOOXX", "XOOOX", "OOOXX", "OXOOX", "OOOOO"}, {"PXPXP", "XPXPX", "PXPXP", "XPXPX", "PXPXP"}};
int[] answer = {1, 0, 1, 1, 1};
CheckDistance checkDistance = new CheckDistance();
System.out.println(Arrays.toString(checkDistance.solution(input1)));
Assertions.assertArrayEquals(checkDistance.solution(input1), answer);
}
}

0 comments on commit 1a3ff3e

Please sign in to comment.