Junior — Senior
Anagram Detection Function
livecode
Task condition
Implement a function that takes two strings. If the first string is an anagram of the second, the function should return True; otherwise, False. Example signature: def is_anagram(first: str, second: str) -> bool: