A little known fact is that cats really love solving captchas! Today, Mimi the cat has prepared some captcha puzzles by drawing digits out of asterisks.
The numbers are drawn as follows:
Digit | Drawing | Digit | Drawing |
---|---|---|---|
0 | -*-*-*- |
1 | ------* |
2 | -*-*-*- |
3 | -*-*-*- |
4 | *-----* |
5 | -*-*-*- |
6 | -*-*-*- |
7 | -*-*-*- |
8 | -*-*-*- |
9 | -*-*-*- |
Mimi can scale the numbers up and down by adding or removing asterisks from each edge. For example, the following are all the number 0:
-*-
*-*
*-*
---
*-*
*-*
-*-
-*-*-
*---*
-----
*---*
-*-*-
-*-*-*-
*-----*
*-----*
*-----*
-------
*-----*
*-----*
*-----*
-*-*-*-
Note that all horizontal segments are of the same length, and all vertical segments are of the same length. Mimi may also add additional dashes as padding around the digits. Note that the padding can include extra lines consisting only of dashes before and after the actual number.
Mimi just has one little problem - she needs someone else to make sure she solved her puzzles correctly! Can you help your good friend Mimi?
Input Specification
The first line begins with a single integer , the number of test cases. test cases follow.
Each test case begins with one integer , the number of captchas.
Each captcha will start with two integers , the size of the captcha.
The following lines will each contain characters: either a -
or an *
, which composes the captcha.
It is guaranteed that the captchas are valid.
For the first three cases, .
For the first six cases, all segments will be of the same length. Note that this means the number of *
in a vertical segment is equal to the number of *
in a horizontal segment.
Output Specification
For each test case, print the digits each captcha corresponds to on the same line. The digits for different test cases should be on separate lines.
Sample Input
1
2
9 7
-*-*-*-
*-----*
*-----*
*-----*
-*-*-*-
*-----*
*-----*
*-----*
-*-*-*-
9 5
-----
--*--
-*-*-
-*-*-
-----
-*-*-
-*-*-
--*--
-----
Sample Output
80
Note: you do NOT need to pass the sample to pass some of the cases.
Educational Computing Organization of Ontario - statements, test data and other materials can be found at ecoocs.org
Comments