Skip to content

Instantly share code, notes, and snippets.

@shapr
Created May 25, 2022 12:26
Show Gist options
  • Save shapr/d5b12649e19766092b7878663c49d772 to your computer and use it in GitHub Desktop.
Save shapr/d5b12649e19766092b7878663c49d772 to your computer and use it in GitHub Desktop.
module Splitty where
splitty :: String -> [String]
splitty [] = []
splitty [c] = [[c, '_']]
splitty (a : b : cs) = [[a, b]] <> splitty cs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment