Question: X47: without Ten : Given an intl array, write a function that returns an array where all the 10's have been removed. The remaining elements
X47: without Ten : Given an intl array, write a function that returns an array where all the 10's have been removed. The remaining elements should shift left towards the start of the array as needed, and the empty spaces at the end of the array should be set to 0. So {1, 10, 10, 2} yields {1, 2, 0, 0). You may modify and return the given array or make a new array Examples: without Ten (C1, 10, 10, 2)) -> (1, 2, 0, 0) Your Answer: Feedback 1 public int without Ten(int[nums) 2 { 3 41) 5 0.07 1.0 Your answer could not be processed because it contains errors: Line 13: error: not a statement
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
