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

 

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

Given a number n and String letters, create and return a new string array of length n, containing the String letters at every position in the array. n may be 0, in which case just return a length 0 array. Note: The syntax to make a new String array is: new String[desired_length]


array1DLetters(3, "Z") → ["Z", "Z", "Z"]
array1DLetters(6, "A") → ["A", "A", "A", "A", "A", "A"]
array1DLetters(1, "HI") → ["HI"]

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

public String[] array1DLetters(int n, String letters) }

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