Assessment 3_1_sample
Instructions
This assessment is designed to be completed in 10 minutes or less.
Copy the template below and get all the test cases to pass. Hard-coding answers will not receieve credit; your solution must work for valid arrays.
The problem
Imagine the user enters an array of integers and a number. Return a new array where all instances of that number are removed.
To save time, we’ve created a result array for you that is 100 elements long, and filled with zeroes; you can simply place the kept items into this array, in order. The grading script will remove the extra zeroes at the end automatically (and you can take a look at the cleanResult
method in the template if you’re curious how it works).
Code Template and Test cases
import java.util.Arrays;
public class Assess3_1_Sample{
public static int[] remove(int[] original, int element){
int [] result = new int[15];
return result;
}
public static int[] cleanResult(int[] array){
return Arrays.stream(array).filter(num -> num != 0).toArray();
}
public static void main(String[] args){
int [] arr1 = {};
int [] result1 = {};
System.out.println("test1: " + Arrays.equals(cleanResult(remove(arr1, 1)), result1));
int [] arr2 = {1};
int [] result2 = {};
System.out.println("test2: " + Arrays.equals(cleanResult(remove(arr2, 1)), result2));
int [] arr3 = {1, 2};
int [] result3 = {2};
System.out.println("test3: " + Arrays.equals(cleanResult(remove(arr3, 1)), result3));
int [] arr4 = {2, 1};
int [] result4 = {2};
System.out.println("test4: " + Arrays.equals(cleanResult(remove(arr4, 1)), result4));
int [] arr5 = {1, 2, 3};
int [] result5 = {1, 3};
System.out.println("test5: " + Arrays.equals(cleanResult(remove(arr5, 2)), result5));
int [] arr6 = {1,2,3,4,4,3,2,1,1,2,3,4};
int [] result6 = {1, 3, 4, 4, 3, 1, 1, 3, 4};
System.out.println("test6: " + Arrays.equals(cleanResult(remove(arr6, 2)), result6));
}
}