From 1728101e078742c61f335f42b48cba386885f65c Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Mon, 21 Aug 2017 23:20:59 -0700 Subject: [PATCH] accumulate: remove Lisp-specific portion Elixir-specific portion added: https://github.com/exercism/exercism.io/pull/1136 Lisp-specific portion added: https://github.com/exercism/problem-specifications/pull/98 Elixir-specific portion removed because the `Enum.reduce` was not necessary: https://github.com/exercism/problem-specifications/pull/274 It doesn't seem to make much sense to include this Lisp-specific sentence in non-Lisp tracks. https://github.com/exercism/problem-specifications/pull/871 --- exercises/accumulate/README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/exercises/accumulate/README.md b/exercises/accumulate/README.md index eb7358d9a..7b235554f 100644 --- a/exercises/accumulate/README.md +++ b/exercises/accumulate/README.md @@ -25,9 +25,6 @@ Keep your hands off that collect/map/fmap/whatchamacallit functionality provided by your standard library! Solve this one yourself using other basic tools instead. -Lisp specific: it's perfectly fine to use `MAPCAR` or the equivalent, -as this is idiomatic Lisp, not a library function. - ## Hints We are dealing with two types of situations. One is a function pointer and