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

 

string_anagram


Given two Strings, return true if they are anagrams of each other and false if they are not.


string_anagram("listen", "silent") → true
string_anagram("monroe", "program") → false
string_anagram("players", "parsley") → true

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

public boolean string_anagram(String a, String b) { }

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