prep-work/1- python/13-string-scramble
2015-07-22 16:44:07 -04:00
..
2015-07-22 16:44:07 -04:00
2015-07-22 16:44:07 -04:00

String Scramble

Write an algorithm that takes a string, and checks if all of the letters of the string are inside of a second string. For example:

string_scramble('hello', 'goodbye') # False  
string_scramble('hello', 'lolfrhe') # True

Write your own assert statements.