style: format code (#4212)

close #4204
This commit is contained in:
acbin
2023-06-09 18:52:05 +08:00
committed by GitHub
parent ad03086f54
commit 00282efd8b
521 changed files with 5233 additions and 7309 deletions

View File

@ -8,10 +8,9 @@ public class HowManyTimesRotatedTest {
@Test
public void testHowManyTimesRotated() {
int[] arr1 = {5, 1,2,3,4};
int[] arr1 = {5, 1, 2, 3, 4};
assertEquals(1, HowManyTimesRotated.rotated(arr1));
int[] arr2 = {15,17,2,3,5};
int[] arr2 = {15, 17, 2, 3, 5};
assertEquals(2, HowManyTimesRotated.rotated(arr2));
}
}