This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns anagram | |
[:require [clojure.string :as str]]) | |
(defn anagram? [word possible-anagram] | |
(and | |
(not= word possible-anagram) | |
(= (sort possible-anagram) | |
(sort word)))) | |
(defn case-insensitive-anagram? [word possible-anagram] | |
(anagram? | |
(str/lower-case word) | |
(str/lower-case possible-anagram))) | |
(defn anagrams-for [word word-list] | |
(vec | |
(filter | |
#(case-insensitive-anagram? word %) | |
word-list))) |
This time I decided not to make the helpers local because they might be useful by themselves.
I also decided to separate in different functions the case-sensitive and case-insensitive versions of the anagram detection function.
You can nitpick my solution here or see all the exercises I've done so far in this repository.
No comments:
Post a Comment