# OCR Numbers Given a 3 x 4 grid of pipes, underscores, and spaces, determine which number is represented, or whether it is garbled. # Step One To begin with, convert a simple binary font to a string containing 0 or 1. The binary font uses pipes and underscores, four rows high and three columns wide. ```text _ # | | # zero. |_| # # the fourth row is always blank ``` Is converted to "0" ```text # | # one. | # # (blank fourth row) ``` Is converted to "1" If the input is the correct size, but not recognizable, your program should return '?' If the input is the incorrect size, your program should return an error. # Step Two Update your program to recognize multi-character binary strings, replacing garbled numbers with ? # Step Three Update your program to recognize all numbers 0 through 9, both individually and as part of a larger string. ```text _ _| |_ ``` Is converted to "2" ```text _ _ _ _ _ _ _ _ # | _| _||_||_ |_ ||_||_|| | # decimal numbers. ||_ _| | _||_| ||_| _||_| # # fourth line is always blank ``` Is converted to "1234567890" # Step Four Update your program to handle multiple numbers, one per line. When converting several lines, join the lines with commas. ```text _ _ | _| _| ||_ _| _ _ |_||_ |_ | _||_| _ _ _ ||_||_| ||_| _| ``` Is converted to "123,456,789" ## Getting Started For installation and learning resources, refer to the [exercism help page](http://exercism.io/languages/haskell). ## Running the tests To run the test suite, execute the following command: ```bash stack test ``` #### If you get an error message like this... ``` No .cabal file found in directory ``` You are probably running an old stack version and need to upgrade it. #### Otherwise, if you get an error message like this... ``` No compiler found, expected minor version match with... Try running "stack setup" to install the correct GHC... ``` Just do as it says and it will download and install the correct compiler version: ```bash stack setup ``` ## Running *GHCi* If you want to play with your solution in GHCi, just run the command: ```bash stack ghci ``` ## Feedback, Issues, Pull Requests The [exercism/haskell](https://github.com/exercism/haskell) repository on GitHub is the home for all of the Haskell exercises. If you have feedback about an exercise, or want to help implementing a new one, head over there and create an issue. We'll do our best to help you! ## Source Inspired by the Bank OCR kata [http://codingdojo.org/cgi-bin/wiki.pl?KataBankOCR](http://codingdojo.org/cgi-bin/wiki.pl?KataBankOCR) ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.