Assessment 3_4_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 a list of integers. Return a new list where you add 3 to every odd number in the list.

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_4_Sample{

  public static int[] addToOdds(int[] original){
    int [] result = new int[5];

    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(addToOdds(arr1)), result1));
      int [] arr2 = {1};
      int [] result2 = {4};
      System.out.println("test2: " + Arrays.equals(cleanResult(addToOdds(arr2)), result2));
      int [] arr3 = {1, 3};
      int [] result3 = {4, 6};
      System.out.println("test3: " + Arrays.equals(cleanResult(addToOdds(arr3)), result3));
      int [] arr4 = {2, 1, 3, 4};
      int [] result4 = {2, 4, 6, 4};
      System.out.println("test4: " + Arrays.equals(cleanResult(addToOdds(arr4)), result4));
      int [] arr5 = {2, 2, 4, 4};
      int [] result5 = {2, 2, 4, 4};
      System.out.println("test5: " + Arrays.equals(cleanResult(addToOdds(arr5)), result5));
      int [] arr6 = {2};
      int [] result6 = {2};
      System.out.println("test6: " + Arrays.equals(cleanResult(addToOdds(arr6)), result6));

  }

}