From 44aeba3d7c70fc77a837b5a230a5290dfa1cae39 Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Tue, 7 Jun 2022 12:40:47 +0200 Subject: [PATCH] fix(curriculum): external Paul Graham link in CIP (#46374) --- .../rosetta-code/accumulator-factory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/accumulator-factory.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/accumulator-factory.md index fd90df9f347..87a41c1df7d 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/accumulator-factory.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/accumulator-factory.md @@ -8,7 +8,7 @@ dashedName: accumulator-factory # --description-- -A problem posed by [Paul Graham](https://en.wikipedia.org/wiki/Paul_Graham_(programmer)) is that of creating a function that takes a single (numeric) argument and which returns another function that is an accumulator. The returned accumulator function in turn also takes a single numeric argument, and returns the sum of all the numeric values passed in so far to that accumulator (including the initial value passed when the accumulator was created). +A problem posed by Paul Graham is that of creating a function that takes a single (numeric) argument and which returns another function that is an accumulator. The returned accumulator function in turn also takes a single numeric argument, and returns the sum of all the numeric values passed in so far to that accumulator (including the initial value passed when the accumulator was created). # --instructions--