RosettaCodeData/Task/Gray-code/PicoLisp/gray-code-1.l

11 lines
207 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(de grayEncode (N)
(bin (x| N (>> 1 N))) )
(de grayDecode (G)
(bin
(pack
(let X 0
(mapcar
'((C) (setq X (x| X (format C))))
(chop G) ) ) ) ) )