update layout

This commit is contained in:
2023-02-25 17:39:39 +08:00
parent 5ae8c8794b
commit d32ed302d1
28 changed files with 1489 additions and 5514 deletions

View File

@ -0,0 +1,12 @@
def Conv(strl: str):
if len(strl) & 3 != 0:
print('Invalid length!')
return
idaBytes = tuple(strl[i:i+2] for i in range(0, len(strl), 2))
for i in range(0, len(idaBytes), 4):
print(idaBytes[i+3] + idaBytes[i+2] + idaBytes[i+1] + idaBytes[i])
while True:
Conv(input("data> "))