about | help | code help+videos | done | prefs |
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) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 10 Post-solution available
Copyright Nick Parlante 2017 - privacy