mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-06 17:29:31 +08:00
9 lines
242 B
Java
9 lines
242 B
Java
package com.thealgorithms.misc;
|
|
|
|
public final class MedianOfRunningArrayInteger extends MedianOfRunningArray<Integer> {
|
|
@Override
|
|
public Integer calculateAverage(final Integer a, final Integer b) {
|
|
return (a + b) / 2;
|
|
}
|
|
}
|