In Python, Scramble String And Check If Two Strings Are Anagram

from random import shuffle

def scramble_letters(txt):
    chars = list(txt)
    shuffle(chars)
    return ''.join(chars)

def is_anagram(s1, s2):
    return ''.join(sorted(list(s1))) == ''.join(sorted(list(s2)))

Comments

Popular posts from this blog

Tecq Mate | Build APK with command line only | Build Android with cmd | No IDE | No Android Studio