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

 

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

Write a method called michael that accepts a string parameter. The method returns true if the single word in the string can be made up of the characters in the word "michael" where letters are allowed to be used any number of times. The method returns false if it is not possible to make the word from the letters in "michael". This method must not be case-sensitive.


michael("mike") → false
michael("michelle") → true
michael("champ") → false

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

public boolean michael(String w) { }

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

Copyright Nick Parlante 2017 - privacy