introductionToProgramming/week6/HistogramTests.java
Daniel Bulant 631623009b
add week 6
2025-10-11 18:38:36 +02:00

16 lines
341 B
Java

package week6;
import java.util.Arrays;
public class HistogramTests {
public static void main(String[] args) {
assert Arrays.equals(
new int[]{ 0,1,1,1 },
Histogram.histogram(new int[]{ 1,2,3 }, 4)
);
assert Arrays.equals(
new int[]{ 0,3,0,0 },
Histogram.histogram(new int[]{ 1,1,1 }, 4)
);
}
}