From ba395843bdd76419ba66a53e0ecb33128688cf1a Mon Sep 17 00:00:00 2001 From: zainab Dnaya Date: Fri, 12 Aug 2022 11:45:12 +0100 Subject: [PATCH] correct the subject --- subjects/printandmiss/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/subjects/printandmiss/README.md b/subjects/printandmiss/README.md index 515a9df5..92b0d08c 100644 --- a/subjects/printandmiss/README.md +++ b/subjects/printandmiss/README.md @@ -4,7 +4,6 @@ Write a function called `PrintAndMiss` that takes a string and an integer and return a string containing the characters until reaching the integer, then skipping that same number of characters, and repeats until the end of the string. -- Return the first half followed by newline `\n`. - If the string is empty return `Invalid Output` followed by newline `\n`. - If the integer is `0` or it's negative return the string followed by a newline `\n`.