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
require 'benchmark' | |
iterations = 10_000 | |
Benchmark.bm(27) do |bm| | |
bm.report('for loop') do | |
iterations.times do | |
for iter in 0..1_000 | |
end | |
end |
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
module Anagrams where | |
anagrams :: String -> [String] | |
anagrams [] = [] | |
anagrams [x] = [[x]] | |
anagrams word = anagrams' [] word | |
anagrams' :: String -> String -> [String] | |
anagrams' _ [] = [] | |
anagrams' prev (x:xs) = |