From 847ae3957db0de59c0e58b90a2cdd8401ce4233d Mon Sep 17 00:00:00 2001 From: Armen Vartan Date: Tue, 2 Dec 2014 16:36:27 -0500 Subject: [PATCH] string scramble yo --- python/13-string-scramble/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/python/13-string-scramble/README.md b/python/13-string-scramble/README.md index b0f4c9d..d39d461 100644 --- a/python/13-string-scramble/README.md +++ b/python/13-string-scramble/README.md @@ -2,8 +2,8 @@ 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. \ No newline at end of file +``` +string_scramble('hello', 'goodbye') # False +string_scramble('hello', 'lolfrhe') # True +``` +Write your own assert statements.