From 1613eb38ed9d6384544eec831991168a5abe9ce0 Mon Sep 17 00:00:00 2001 From: jazzybones-www Date: Sun, 7 Jul 2024 21:41:22 +0000 Subject: [PATCH] BUGFIX: fix a typo in the hamming code problem statement (#1472) --- src/data/codingcontracttypes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/codingcontracttypes.ts b/src/data/codingcontracttypes.ts index d0cf4422b..57e842b6e 100644 --- a/src/data/codingcontracttypes.ts +++ b/src/data/codingcontracttypes.ts @@ -1332,7 +1332,7 @@ export const codingContractTypesMetadata: ICodingContractTypeMetadata[] = [ "Parity bits are inserted at positions 0 and 2^N.\n", "Parity bits are used to make the total number of '1' bits in a given set of data even.\n", "The parity bit at position 0 considers all bits including parity bits.\n", - "Each parity bit at position 2^N alternately considers N bits then ignores N bits, starting at position 2^N.\n", + "Each parity bit at position 2^N alternately considers 2^N bits then ignores 2^N bits, starting at position 2^N.\n", "The endianness of the parity bits is reversed compared to the endianness of the data bits:\n", "Data bits are encoded most significant bit first and the parity bits encoded least significant bit first.\n", "The parity bit at position 0 is set last.\n",