Skip to content

aptech-uyo/anagram-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

anagram-py

An anagram is the result of rearranging the letters of a word to produce a new word (see Wikipedia).

Note: Anagrams are case insensitive

Complete the is_anagram function to return true if the two arguments given are anagrams of each other; return false otherwise.

Examples

"foefet" is an anagram of "toffee"

"Buckethead" is an anagram of "DeathCubeK"

Instructions

  • Test your solution by running python tests.py
  • You are encouraged to try writing more tests. Your solution will be run against many more tests after this assessment.
  • Push your changes to the main branch: git push origin main