Problem J
ASCII Addition
Nowadays, there are smartphone applications that instantly translate text and even solve math problems if you just point your phone’s camera at them. Your job is to implement a much simpler functionality reminiscent of the past – add two integers written down as ASCII art.
An ASCII art is a matrix of characters, exactly
An expression of the form
xxxxx x...x x...x x...x x...x x...x xxxxx
....x ....x ....x ....x ....x ....x ....x
xxxxx ....x ....x xxxxx x.... x.... xxxxx
xxxxx ....x ....x xxxxx ....x ....x xxxxx
x...x x...x x...x xxxxx ....x ....x ....x
xxxxx x.... x.... xxxxx ....x ....x xxxxx
xxxxx x.... x.... xxxxx x...x x...x xxxxx
xxxxx ....x ....x ....x ....x ....x ....x
xxxxx x...x x...x xxxxx x...x x...x xxxxx
xxxxx x...x x...x xxxxx ....x ....x xxxxx
..... ..x.. ..x.. xxxxx ..x.. ..x.. .....
Given an ASCII art for an expression of the form
Input
Input consists of exactly
Output
Output
Sample Input 1 | Sample Output 1 |
---|---|
....x.xxxxx.xxxxx.x...x.xxxxx.xxxxx.xxxxx.......xxxxx.xxxxx.xxxxx ....x.....x.....x.x...x.x.....x.........x...x...x...x.x...x.x...x ....x.....x.....x.x...x.x.....x.........x...x...x...x.x...x.x...x ....x.xxxxx.xxxxx.xxxxx.xxxxx.xxxxx.....x.xxxxx.xxxxx.xxxxx.x...x ....x.x.........x.....x.....x.x...x.....x...x...x...x.....x.x...x ....x.x.........x.....x.....x.x...x.....x...x...x...x.....x.x...x ....x.xxxxx.xxxxx.....x.xxxxx.xxxxx.....x.......xxxxx.xxxxx.xxxxx |
....x.xxxxx.xxxxx.xxxxx.x...x.xxxxx.xxxxx ....x.....x.....x.x.....x...x.x.........x ....x.....x.....x.x.....x...x.x.........x ....x.xxxxx.xxxxx.xxxxx.xxxxx.xxxxx.....x ....x.x.........x.....x.....x.....x.....x ....x.x.........x.....x.....x.....x.....x ....x.xxxxx.xxxxx.xxxxx.....x.xxxxx.....x |