Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 208 Bytes

11-solve-form.md

File metadata and controls

14 lines (11 loc) · 208 Bytes

Exercise 11

Fix errors in the code below:

solve :: Int -> Integer
solve = undefined

main = do
  n <- readLn
  forM_ [1..n] (\i -> do
    m <- readLn
    printf "Case %d: %d" i (solve m))