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

 

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

Return a version of the given array where all the 5's have been removed. The remaining elements should shift left towards the start of the array as needed, and the empty spaces a the end of the array should be 0. So {1, 5, 5, 2} yields {1, 2, 0, 0}. Hint: You may modify and return the given array or make a new array, but making a new array may be easier. Also, think about keeping track of the indexes in both arrays with separate variables.


array1DNoFives([1, 5, 5, 2]) → [1, 2, 0, 0]
array1DNoFives([5]) → [0]
array1DNoFives([1, 2, 3, 4]) → [1, 2, 3, 4]

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

public int[] array1DNoFives(int[] nums) }

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