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 71a764b commit 79cb53cCopy full SHA for 79cb53c
coordinate_compression.py
@@ -3,6 +3,7 @@ def compress(value):
3
raise ValueError(f"{value} not found in coordinate map")
4
return coordinate_map[value]
5
6
+
7
def decompress(index):
8
if index < 0 or index >= len(original_values):
9
raise ValueError(f"Index {index} is out of bounds")
0 commit comments