From 7a7a10b099744f2f51a66dd7af2662562829ecf9 Mon Sep 17 00:00:00 2001 From: Jason Lewis Date: Mon, 27 Jul 2015 08:02:57 -0400 Subject: [PATCH] Point out that using MAPCAR is idiomatic Lisp --- accumulate.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/accumulate.md b/accumulate.md index 6b462c6fd8..d9248db057 100644 --- a/accumulate.md +++ b/accumulate.md @@ -20,3 +20,6 @@ Solve this one yourself using other basic tools instead. Elixir specific: it's perfectly fine to use `Enum.reduce` or `Enumerable.reduce`. + +Lisp specific: it's perfectly fine to use `MAPCAR` or the equivalent, +as this is idiomatic Lisp, not a library function.