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

 

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

Given an array of Strings named words and a searchString, return a String array of the same elements except if the element is the search String, concatenate two exclamation points to the end of the element.


array1DExclamation(["hey", "there"], "there") → ["hey", "there!!"]
array1DExclamation(["he", "said", "bye", "bye", "bye"], "bye") → ["he", "said", "bye!!", "bye!!", "bye!!"]
array1DExclamation(["never", "say", "never"], "ever") → ["never", "say", "never"]

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

public String[] array1DExclamation(String[] words, String searchString) }

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