Browse Source

Merge branch 'master' of gogs.informatik.hs-fulda.de-jkonert:jjkonert/demo-ha1

master
jkonert 2 years ago
parent
commit
cc6ff1400b
  1. 13
      ArrayManipulation.java
  2. 2
      Prosa.txt

13
ArrayManipulation.java

@ -2,6 +2,17 @@ import java.util.Arrays;
public class ArrayManipulation {
public static int[] removeLast(int[] arr) {
if (arr == null || arr.length < 1) {
return arr;
}
int[] result = new int[arr.length-1];
for (int i = 0; i < result.length; i++) {
result[i] = arr[i];
}
return result;
}
public static int[] reverseArray(int[] arr) {
@ -11,7 +22,6 @@ public class ArrayManipulation {
arr[arr.length - 1 - i] = tmp;
}
return arr;
}
public static int[] removeFirst(int[] arr) {
@ -30,5 +40,6 @@ public class ArrayManipulation {
int[] arr = {1,2,3,4,5};
System.out.println(Arrays.toString(reverseArray(arr)));
System.out.println(Arrays.toString(removeFirst(arr)));
System.out.println(Arrays.toString(removeLast(arr)));
}
}

2
Prosa.txt

@ -1,3 +1,3 @@
Es gibt zwei Sorten von Menschen:
Es gibt zwei Arten von Menschen:
Die einen, die binär verstehen
und die anderen, die es nicht tun.
Loading…
Cancel
Save