Skip to content

Commit

Permalink
Merge pull request #502 from lpalma/add-explicit-args-to-hamming
Browse files Browse the repository at this point in the history
Hamming: Add explicit arguments to the stub functions

Closes #494.
  • Loading branch information
rbasso authored Mar 11, 2017
2 parents 2037a25 + 7d838c9 commit 7b52f43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exercises/hamming/src/Hamming.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module Hamming (distance) where

distance = error "You need to implement this function."
distance :: String -> String -> Maybe Int
distance xs ys = error "You need to implement this function."

0 comments on commit 7b52f43

Please sign in to comment.