Skip to content

Instantly share code, notes, and snippets.

View emilwall's full-sized avatar
👨‍🏫

Emil Wall emilwall

👨‍🏫
View GitHub Profile
@emilwall
emilwall / Anagrams.hs
Last active November 30, 2016 21:43
Anagrams kata in Haskell, based on http://www.cyber-dojo.org/ exercise
module Anagrams where
anagrams :: String -> [String]
anagrams [] = []
anagrams [x] = [[x]]
anagrams word = anagrams' [] word
anagrams' :: String -> String -> [String]
anagrams' _ [] = []
anagrams' prev (x:xs) =
@emilwall
emilwall / benchmark.rb
Created September 16, 2013 16:09
Benchmark to compare ruby while and for loop, inspired by http://rubylearning.com/blog/2013/06/19/how-do-i-benchmark-ruby-code/
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