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

 

simona1@sfusd.edu searching2 > gotMilk
prev  |  next  |  chance

Given an Array of strings, compute recursively (no loops) whether or not the Array contains the string "milk" somewhere. The initial call will have i=0.


gotMilk(0, ["water", "soda", "juice"]) → false
gotMilk(0, ["milk", "water", "soda", "juice"]) → true
gotMilk(0, ["water", "soda", "juice", "milk"]) → true

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

public boolean gotMilk(int i, String[] strings) { }

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

Post-solution available

Copyright Nick Parlante 2017 - privacy