aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFung Cheok Yin <61836418+E7-87-83@users.noreply.github.com>2020-07-26 18:22:44 +0800
committerGitHub <noreply@github.com>2020-07-26 18:22:44 +0800
commit0801107ed8666794d35b3cb23f72bdfdad6d0120 (patch)
tree0d97d87f0bc2cdbe81a08dc9bf3c1e551e2d3b6f
parent3fca1475f6afffcb7cdddaec7dbdc2ea0b521b67 (diff)
downloadperlweeklychallenge-club-0801107ed8666794d35b3cb23f72bdfdad6d0120.tar.gz
perlweeklychallenge-club-0801107ed8666794d35b3cb23f72bdfdad6d0120.tar.bz2
perlweeklychallenge-club-0801107ed8666794d35b3cb23f72bdfdad6d0120.zip
Update and rename ch-2.lsp to challenge-070/cheok-yin-fung/common-lisp/ch-2.lsp
-rw-r--r--challenge-070/cheok-yin-fung/common-lisp/ch-2.lsp (renamed from ch-2.lsp)4
1 files changed, 3 insertions, 1 deletions
diff --git a/ch-2.lsp b/challenge-070/cheok-yin-fung/common-lisp/ch-2.lsp
index 8cce700264..34828f265f 100644
--- a/ch-2.lsp
+++ b/challenge-070/cheok-yin-fung/common-lisp/ch-2.lsp
@@ -1,3 +1,5 @@
+;; Perl Weekly Challenge 070 Task 2 Gray Code Sequence
+
(setf n 4)
(setf a '(0 1))
(setf m (- n 1))
@@ -10,6 +12,6 @@
(setf a (append a b))
)
-;;now the variable a stores the n-bit gray code sequence
+;; now the variable a stores the n-bit gray code sequence
a