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

 

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

An array contains the names of streets in your town. Each street is in lowercase letters. Return the street name that is lowest alphabetically. If the array is empty, return the empty string "".


commonAlgLowestStreet(["elm st.", "beach ave.", "zebra dr."]) → "beach ave."
commonAlgLowestStreet(["main st."]) → "main st."
commonAlgLowestStreet(["fish blvd.", "kick dr.", "velvet rd."]) → "fish blvd."

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

public String commonAlgLowestStreet(String[] streets) { }

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