RosettaCodeData/Task/Gray-code/PicoLisp/gray-code-1.l
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

10 lines
207 B
Text

(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) ) ) ) ) )