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

 

zbaharav@kehillah.org 66-sortingprep > isMoreAsThanBs
prev  |  next  |  chance

Given a string, return true if the number of times that character 'a' appears anywhere in the string is more than that of character 'b', otherwise, return false. For example, "aab" -> true, and "abb" -> false(Difficulty Level: 3)


isMoreAsThanBs("abb") → false
isMoreAsThanBs("aab") → true
isMoreAsThanBs("ac") → true

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

public boolean isMoreAsThanBs(String s){ }

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

Copyright Nick Parlante 2017 - privacy