From 2e886a02cdc4b2e4fc46ad5800fdd2f63b334e9f Mon Sep 17 00:00:00 2001 From: jrosendo Date: Mon, 7 Nov 2022 17:19:25 +0000 Subject: [PATCH] docs(sliceAdd): fixed subject --- subjects/sliceadd/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/subjects/sliceadd/README.md b/subjects/sliceadd/README.md index 03df1753..d1220101 100644 --- a/subjects/sliceadd/README.md +++ b/subjects/sliceadd/README.md @@ -3,6 +3,7 @@ ### Instructions Write a function that takes a slice of integers and an `int` as arguments, adds the `int` to the slice and returns it. + - If the slice is empty, return a slice with the new value. ### Expected function