scale before stitch
This commit is contained in:
parent
8d4b2bc943
commit
d26bcf545c
4 changed files with 47 additions and 4 deletions
|
|
@ -20,9 +20,9 @@ internal record Coordinate
|
|||
{
|
||||
row = row * 26 + (item - 'A' + 1);
|
||||
}
|
||||
else if (item >= '1')
|
||||
else if (item >= '0')
|
||||
{
|
||||
col = col * 10 + (item - '1' + 1);
|
||||
col = col * 10 + (item - '0' + 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue