diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/gray-code.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/gray-code.md index 4e5c5237373..fab51c20ea8 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/gray-code.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/gray-code.md @@ -8,11 +8,11 @@ dashedName: gray-code # --description-- -[Gray code]() is a form of binary encoding where transitions between consecutive numbers differ by only one bit. +Gray code is a form of binary encoding where transitions between consecutive numbers differ by only one bit. This is a useful encoding for reducing hardware data hazards with values that change rapidly and/or connect to slower hardware as inputs. -It is also useful for generating inputs for [Karnaugh maps]() in order from left to right or top to bottom. +It is also useful for generating inputs for Karnaugh maps in order from left to right or top to bottom. # --instructions--