Skip to content

won-cp/anagrams

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 

Repository files navigation

Character Match Challenge

For this challenge you will make a program that takes in two different strings and see if the invidual letter or number characters in a string match in both strings. For example, 'abcde2' can be rearranged to 'c2abed'.

Example

Your program should return true for all the following examples...

is_character_match('charm', 'march')
is_character_match('CharM', 'mARcH')
is_character_match('abcde2', 'c2abed')

Remember

Run your test specs early and often. Also, if you come across a scenario that isn't included in your test suite, then you should absolutely add it!

Challenge Yourself

  • Solve this same exercise without using Python's built-in sorted method.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 5