You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
//created by Team 66
import java.util.Arrays;
public class ArrayManipulation {
public static int[] reverseArray(int[] arr, String name) {
for (int i = 0; i < arr.length/2; i++) { int tmp = arr[i]; arr[i] = arr[arr.length - 1 - i]; arr[arr.length - 1 - i] = tmp; } return arr;
} public static void main(String[] args) { <<<<<<< HEAD int[] arr = {1,2,3,4,5}; System.out.println(Arrays.toString(reverseArray(arr, "Hannah"))); ======= int[] arr = {1,2,3,4,5,8}; System.out.println(Arrays.toString(reverseArray(arr))); >>>>>>> 471ac3d389e5c3eabdfb385a6ad08f94a8b97c3b } public static int[] removeFirst(int[] arr) { int[] newArray = new int[arr.length]; for(int i = 1; i < arr.length; i++){ newArray[i-1] = arr[i]; } return newArray; } public static int[] removeLast(int[] arr) { int[] result = new int[arr.length-1]; for (int i = 0; i < arr.length-1; i++) { result[i] = arr[i]; } return result; } }
|