We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec794c0 commit a9552bbCopy full SHA for a9552bb
2024/9/script.py
@@ -93,7 +93,7 @@ def compact(filesystem: list) -> list:
93
94
# find a large enough block of free space left of the current block
95
for index, check_block in enumerate(new_fs[:cur_index]):
96
- # skip files and blocks of free space that aren't large enough
+ # skip data blocks and blocks of free space that aren't large enough
97
if check_block.id != '.' or check_block.size < block.size:
98
continue
99
0 commit comments