From 674976c6755daa763794941308841c07f2b0dd03 Mon Sep 17 00:00:00 2001 From: Kristyn Bryan Date: Mon, 23 May 2016 14:50:17 -0400 Subject: [PATCH] Update README.md --- unit_01/w02d02/morning_exercise/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unit_01/w02d02/morning_exercise/README.md b/unit_01/w02d02/morning_exercise/README.md index 21d1939..65d1b6e 100644 --- a/unit_01/w02d02/morning_exercise/README.md +++ b/unit_01/w02d02/morning_exercise/README.md @@ -21,12 +21,12 @@ var searchArray = function(array,value) { - Given two strings, write a method to decide if one is a permutation of the other Note: If you were given this problem in an inteview, important things to ask your interviewer would be: -Is this case sensitive (ex: is `God` different from `dog`)? -Is whitespace significant? (for this question, the white space is not important) +- Is this case sensitive (ex: is `God` different from `dog`)? +- Is whitespace significant? (for this question, the white space is not important) ```javascript -- isPermutation('cat top', 'tap pat`) => false -- isPermutation('cat top', `tot cap`) => true +isPermutation('cat top', 'tap pat`) => false +isPermutation('cat top', `tot cap`) => true ``` Here is some starter code: ```javascript