files
This commit is contained in:
9
python/13-string-scramble/README.md
Normal file
9
python/13-string-scramble/README.md
Normal 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.
|
2
python/13-string-scramble/scramble.py
Normal file
2
python/13-string-scramble/scramble.py
Normal file
@ -0,0 +1,2 @@
|
||||
def string_scramble(string_one, string_two):
|
||||
pass
|
Reference in New Issue
Block a user