Sha256: e401cb3f38e45f004d0a32433ffb429e3a3832b618d0b9fdcc727fc5c8660459

Contents?: true

Size: 1.85 KB

Versions: 75

Compression:

Stored size: 1.85 KB

Contents

# 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"

## Setup

Go through the project setup instructions for Xcode using Swift:

http://exercism.io/languages/swift


## 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.

Version data entries

75 entries across 75 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.138 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.137 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.136 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.135 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.134 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.133 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.132 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.131 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.130 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.129 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.128 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.127 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.126 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.125 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.124 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.123 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.122 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.121 tracks/swift/exercises/ocr-numbers/README.md
trackler-2.2.1.120 tracks/swift/exercises/ocr-numbers/README.md