Skip to content

Commit 587edef

Browse files
committed
jobs not starting
1 parent 04800c6 commit 587edef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public MaximumAverageOfContiguousSubArraysWithK() {
2222
* @param k The size of the sub array.
2323
* @param numbers The array from which sub arrays will be considered.
2424
*
25-
* @return The maximum average of the contiguous sub array of size K. If no such sub array exists, returns 0.
25+
* @return The maximum average of the contiguous sub array of size K. If no such sub array exists, then it returns 0.
2626
*/
2727
public double maxAverage(int k, int... numbers) {
2828
// If there are no elements in the array

0 commit comments

Comments
 (0)