Write a method called stutter that accepts an ArrayList of strings and an integer as parameters and
Question:
Write a method called stutter that accepts an ArrayList of strings and an integer as parameters and that replaces every string with copies of that string. For example, if the list stores the values ["how", "are", "you?"] before the method is called and is 4, it should store the values ["how", "how", "how", "how", "are", "are", "are", "are", "you?", "you?", "you?", "you?"] after the method finishes executing. If k is 0 or negative, the list should be empty after the call.
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
Building Java Programs A Back To Basics Approach
ISBN: 9780135471944
5th Edition
Authors: Stuart Reges, Marty Stepp
Question Posted: