diff options
Diffstat (limited to 'src/test/hanoi.lisp')
-rw-r--r-- | src/test/hanoi.lisp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/hanoi.lisp b/src/test/hanoi.lisp index 66a8d04b..aece2ba0 100644 --- a/src/test/hanoi.lisp +++ b/src/test/hanoi.lisp @@ -106,12 +106,6 @@ ) ) -(defun nth (list n) - (cond ((= n 0) (car list)) - ((nth (cdr list) (1- n))) - ) - ) - ; Replace a stack in the list of stacks ; with a new value |