Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 581 Bytes

Scramblies.md

File metadata and controls

15 lines (8 loc) · 581 Bytes

Write function scramble(str1,str2) that returns true if a portion of str1 characters can be rearranged to match str2, otherwise returns false.

For example:

str1 is 'rkqodlw' and str2 is 'world' the output should return true.

str1 is 'cedewaraaossoqqyt' and str2 is 'codewars' should return true.

str1 is 'katas' and str2 is 'steak' should return false.

Only lower case letters will be used (a-z). No punctuation or digits will be included.

Performance needs to be considered

solution