1
0

refactor: re-organize the layout of asset directory and write some readme

This commit is contained in:
2026-01-24 22:38:32 +08:00
parent 440bc63432
commit 940ffeecf2
8 changed files with 14 additions and 1 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> "))