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

 

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

Return the index of the first word in the words array that begins with the parameter letter. If no words begin with letter, then return -1.


arrayIndexOfStartingLetter(["jet", "golf", "hi", "golf", "kid"], "g") → 1
arrayIndexOfStartingLetter(["jet", "golf", "hi", "golf", "kid"], "j") → 0
arrayIndexOfStartingLetter(["tree", "goat"], "v") → -1

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

public int arrayIndexOfStartingLetter(String[] words, String letter) { }

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