scale before stitch

This commit is contained in:
Meizar Rimadana 2025-07-26 08:50:47 +07:00
parent 8d4b2bc943
commit d26bcf545c
4 changed files with 47 additions and 4 deletions

View file

@ -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);
}
}