HackUTOKYOv2Pim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 4edd7fd79a8244f6e59401bce5c8be59a2efee38
parent b5efc6dc3dbfd2ead62fc240b587184ed8770873
Author: 諒太 林 <ryouturn@gmail.com>
Date:   Fri, 30 Aug 2024 20:42:05 +0900

update test

Diffstat:
Mtest.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test.py b/test.py @@ -63,13 +63,14 @@ def dump(src, keep): diff = difference(keep[y][x],target) if diff > 50: str += '{:02} '.format(diff) - if(y >= 12): + if(x >= 16): RightCount += 1 else: LeftCount += 1 else: str += '-- ' keep[y][x] = target + print(str) count=[RightCount,LeftCount] return count # 仕様メモcount=[RightCount,LeftCount]