Start with Python

This commit is contained in:
Kenneth Mendonca
2015-07-22 16:44:07 -04:00
parent 94031a251f
commit 57cb3981a0
100 changed files with 2085 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