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,20 @@
package util;
public class IntArrayList {
int lenght = 4;
int lastUnfilledPos = 0;
int[] arr = new int[4];
public IntArrayList(){}
public void add(int a){
if (lastUnfilledPos < lenght){
arr[lastUnfilledPos] = a;
lastUnfilledPos ++;
}
else {
int[] arrTemp = new int[lenght*2];
}
}
}