small improvements

This commit is contained in:
Sebastian Brosch 2024-05-07 23:06:51 +02:00
parent 353a41ba0d
commit a91b597a20
2 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,11 @@ package VL13.Aufgabe01;
import java.util.Stack;
/**
* Vorlesung 13 / Aufgabe 1
*
* @author Sebastian Brosch
*/
public class Aufgabe01 {
public static void main(String[] args) {

View File

@ -1,5 +1,10 @@
package VL13.Aufgabe02;
/**
* Vorlesung 13 / Aufgabe 2
*
* @author Sebastian Brosch
*/
public class Aufgabe02 {
public static void main(String[] args) {
MyQueue<Integer> integerQueue = new MyQueue<Integer>();