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

 

andersoniii.edwin@cusd80.com > camelCase
prev  |  next  |  chance

Write the method called “camelCase”. This method receives a string and returns a string in camel case notation. Given: I Love Java – this would become iLoveJava We will assume the words are separated by just one space... No beginning or ending space characters.


camelCase("I Love Java") → "iLoveJava"
camelCase("Math Is For Champions") → "mathIsForChampions"
camelCase("What a good day") → "whatAGoodDay"

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

public String camelCase( String phrase){ }

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

Copyright Nick Parlante 2017 - privacy