分配 分区

This commit is contained in:
wuaho 2021-04-27 16:39:33 +08:00
parent cf8015f805
commit 3dd0f232be

View File

@ -12,7 +12,7 @@ router = APIRouter()
def dest_partition(s: str) -> int:
try:
return int(s[-8:], 16) % 16
return int(s[-18:], 16) % 16
except:
return 0