mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-05 07:07:50 +02:00
correct size calculation
This commit is contained in:
@@ -60,7 +60,7 @@ export function HammingEncodeProperly(data: number): string {
|
|||||||
|
|
||||||
let m = 1;
|
let m = 1;
|
||||||
|
|
||||||
while (2 ** (2 ** m - m - 1) < data) {
|
while (((2**((2**m) - m - 1)) - 1) < data) {
|
||||||
m++;
|
m++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user