Welcome!
Sign Up
Sign up to register for classes!
Sign In
Already registered? Sign in below
What is a Hacker?
A Hacker is an enthusiastic and skillful computer programmer or user
Knowledge is everything...
while (alive) {
skills += keepLearning();
}
Valid Anagram?
Can you tell if two words are anagram? a word, phrase, or name formed by rearranging the letters of another, such as cinema, formed from iceman.
def isAnagram(self, s: str, t: str) -> bool:
return sorted(s) == sorted(t)