mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
9 lines
236 B
Java
9 lines
236 B
Java
package com.thealgorithms.misc;
|
|
|
|
public final class MedianOfRunningArrayByte extends MedianOfRunningArray<Byte> {
|
|
@Override
|
|
public Byte calculateAverage(final Byte a, final Byte b) {
|
|
return (byte) ((a + b) / 2);
|
|
}
|
|
}
|