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

 

jebbert@volusia.k12.fl.us > nov3_2017_SLHL_camelCase
prev  |  next  |  chance

Write a method that accepts an input parameter string that consists of nothing but lower-case letters and spaces. Return a new string based on the input parameter but with all spaces removed and each character that originally followed a space turned into a capital letter. Look at the test data for details.


nov3_2017_SLHL_camelCase("") → ""
nov3_2017_SLHL_camelCase("this is a test") → "thisIsATest"
nov3_2017_SLHL_camelCase("intercaps is great") → "intercapsIsGreat"

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

public String nov3_2017_SLHL_camelCase(String str) { }

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: 290

Copyright Nick Parlante 2017 - privacy