Skip to content

Commit e671ff0

Browse files
committed
style: fix whitespace and formatting for SmallestSubarrayWithSum
1 parent 11cbdbf commit e671ff0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/slidingwindow/SmallestSubarrayWithSum.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
public final class SmallestSubarrayWithSum {
1515

1616
// Prevent instantiation
17-
private SmallestSubarrayWithSum() {}
17+
private SmallestSubarrayWithSum() {
18+
}
1819

1920
/**
2021
* Returns the minimal length of a contiguous subarray of which
@@ -44,4 +45,3 @@ public static int smallestSubarrayLen(int[] arr, int target) {
4445
return minLen == Integer.MAX_VALUE ? 0 : minLen;
4546
}
4647
}
47-

0 commit comments

Comments
 (0)