From 435bb95a0494a3167c3fdf28690dd85e70b0f49b Mon Sep 17 00:00:00 2001 From: xpetit <32063953+xpetit@users.noreply.github.com> Date: Fri, 26 Jun 2020 13:34:04 +0200 Subject: [PATCH] Remove reference to another programming language --- subjects/foldint/README.md | 2 -- subjects/reduceint/README.md | 2 -- subjects/slice/README.md | 2 -- 3 files changed, 6 deletions(-) diff --git a/subjects/foldint/README.md b/subjects/foldint/README.md index 4927e3f8..3c7a065e 100644 --- a/subjects/foldint/README.md +++ b/subjects/foldint/README.md @@ -2,8 +2,6 @@ ### Instructions -Write a function called `FoldInt` that simulates the behavior of reduce from JavaScript. - The function should have as parameters a function, `f func(int, int) int` a slice of integers, `slice []int` and an int `acc int`. You should apply for each element of the slice the arithmetic function, saving and printing it. The function will be tested with our own functions `Add, Sub, and Mul`. ### Expected function diff --git a/subjects/reduceint/README.md b/subjects/reduceint/README.md index 2f0fa139..1cea2f5c 100644 --- a/subjects/reduceint/README.md +++ b/subjects/reduceint/README.md @@ -2,8 +2,6 @@ ### Instructions -Write a function called `reduceint` that simulates the behaviour of reduce from JavaScript. - The function should have as parameters a slice of integers, `a []int` and a function `f func(int, int) int`. You should apply for each element of the slice the arithmetic function, saving it and printing. ### Expected function diff --git a/subjects/slice/README.md b/subjects/slice/README.md index 9ca8ffe3..bae9380f 100644 --- a/subjects/slice/README.md +++ b/subjects/slice/README.md @@ -2,8 +2,6 @@ ### Instructions -Write a **function** that replicates the JavaScript function `slice`. - The function receives a slice of strings and one or more integers, and returns a slice of strings. The returned slice is part of the received one but cut from the position indicated in the first int, until the position indicated by the second int. In case there only exists one int, the resulting slice begins in the position indicated by the int and ends at the end of the received slice.