We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da294f7 commit 7cc5b42Copy full SHA for 7cc5b42
contents/graham_scan/code/elisp/graham-scan.el
@@ -10,7 +10,6 @@ Adapted from dash.el."
10
11
(defun nthrev (n lst)
12
"Return the Nth element of LST from the end."
13
- ;; (car (nthcdr n (reverse lst)))
14
(nth (- (length lst) (1+ n)) lst))
15
16
(defun is-ccw (a b c)
0 commit comments