Sha256: ba1fdd82fba1bd8decb8eb3aec7a324559e8dd2ca1122ed627afff2c7357c26a

Contents?: true

Size: 1.31 KB

Versions: 174

Compression:

Stored size: 1.31 KB

Contents

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

```
     _   #
    | |  # zero.
    |_|  #
         # the fourth row is always blank
```

Is converted to "0"

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

```
 _ 
 _|
|_ 
   
```

Is converted to "2"

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

```
    _  _ 
  | _| _|
  ||_  _|
         
    _  _ 
|_||_ |_ 
  | _||_|
         
 _  _  _ 
  ||_||_|
  ||_| _|
         
```

Is converted to "123,456,789"

Version data entries

174 entries across 174 versions & 1 rubygems

Version Path
trackler-2.1.0.18 common/exercises/ocr-numbers/description.md
trackler-2.1.0.17 common/exercises/ocr-numbers/description.md
trackler-2.1.0.16 common/exercises/ocr-numbers/description.md
trackler-2.1.0.15 common/exercises/ocr-numbers/description.md
trackler-2.1.0.14 common/exercises/ocr-numbers/description.md
trackler-2.1.0.13 common/exercises/ocr-numbers/description.md
trackler-2.1.0.12 common/exercises/ocr-numbers/description.md
trackler-2.1.0.11 common/exercises/ocr-numbers/description.md
trackler-2.1.0.10 common/exercises/ocr-numbers/description.md
trackler-2.1.0.9 common/exercises/ocr-numbers/description.md
trackler-2.1.0.8 common/exercises/ocr-numbers/description.md
trackler-2.1.0.7 common/exercises/ocr-numbers/description.md
trackler-2.1.0.6 common/exercises/ocr-numbers/description.md
trackler-2.1.0.5 common/exercises/ocr-numbers/description.md
trackler-2.1.0.4 common/exercises/ocr-numbers/description.md
trackler-2.1.0.3 common/exercises/ocr-numbers/description.md
trackler-2.1.0.2 common/exercises/ocr-numbers/description.md
trackler-2.1.0.1 common/exercises/ocr-numbers/description.md
trackler-2.1.0.0 common/exercises/ocr-numbers/description.md
trackler-2.0.8.55 common/exercises/ocr-numbers/description.md