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

 

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

An array list contains a list of words. Take the first character of the first word and concatenate it as the first character of each word and take the last character of the last word and concatenate it as the last character of each word. Return the modified array list of words.


listWackyWords(["buffalo", "dog"]) → ["bbuffalog", "bdogg"]
listWackyWords(["football", "player", "silly"]) → ["ffootbally", "fplayery", "fsillyy"]
listWackyWords(["great"]) → ["ggreatt"]

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

public List<String> listWackyWords(List<String> wordsList) { }

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