Remove all solution markdown, task images, solution PDFs, and add renamed folder structure as part of THB-wide reorganization.
This commit is contained in:
14
uebung_02/src/util/ArrayTester.java
Normal file
14
uebung_02/src/util/ArrayTester.java
Normal 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));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user