This commit is contained in:
Armen Vartan
2014-12-01 12:17:43 -05:00
parent 89e5a5f4b0
commit b9a8397f34
124 changed files with 2918 additions and 0 deletions

View File

@ -0,0 +1,9 @@
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.

View File

@ -0,0 +1,2 @@
def string_scramble(string_one, string_two):
pass