id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

tlsmith2@wsfcs.k12.nc.us > array1DMidElements
prev  |  next  |  chance

Given 3 int arrays, a and b, each length 5, return a new array length 3 containing their middle elements.


array1DMidElements([1, 2, 3, 4, 5], [6, 7, 8, 9, 10], [0, 3, 5, 7, 9]) → [3, 8, 5]
array1DMidElements([1, 1, 1, 1, 1], [1, 1, 1, 1, 1], [1, 1, 1, 1, 1]) → [1, 1, 1]
array1DMidElements([3, 4, 5, 6, 7], [0, 3, 2, 5, 6], [10, 9, 8, 7, 6]) → [5, 2, 8]

...Save, Compile, Run (ctrl-enter)

public int[] array1DMidElements(int[] a, int[] b, int[] c) }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy