RosettaCodeData/Task/Gray-code/Zkl/gray-code-1.zkl

3 lines
105 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
fcn grayEncode(n){ n.bitXor(n.shiftRight(1)) }
fcn grayDecode(g){ b:=g; while(g/=2){ b=b.bitXor(g) } b }