Remove all solution markdown, task images, solution PDFs, and add renamed folder structure as part of THB-wide reorganization.

This commit is contained in:
2026-05-11 18:58:40 +02:00
parent 7624547d66
commit 879d6a8721
26 changed files with 30 additions and 498 deletions

View File

@@ -0,0 +1,14 @@
package util;
public class ArrayTester {
public static final void main(String[] args)
{
Util util = new Util();
int num = 60;
int[] array0 = new int[num];
int[] array1 = new int[num];
util.fillArrayRandom(array0, num*100);
util.fillArrayRandom(array1, num*100);
System.out.println(util.firstMatch(array0, array1));
}
}