Skip to content

Commit b5305ff

Browse files
committed
Fixed formatting issues
1 parent 1aba467 commit b5305ff

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/com/thealgorithms/others/MaximumSlidingWindow.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,4 @@ public int[] maxSlidingWindow(int[] nums, int windowSize) {
5353
}
5454
return result;
5555
}
56-
5756
}

src/test/java/com/thealgorithms/others/MaximumSlidingWindowTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.thealgorithms.others;
22

3-
import static org.junit.jupiter.api.Assertions.*;
3+
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
44

55
import org.junit.jupiter.api.BeforeEach;
66
import org.junit.jupiter.api.Test;

0 commit comments

Comments
 (0)