From ec53e392ea062bfa66b6226e09971f85c05b4cf5 Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Fri, 24 Jun 2022 16:53:55 +0100 Subject: [PATCH] corrected --- subjects/argsort/README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/subjects/argsort/README.md b/subjects/argsort/README.md index 2921e733..2a28b90e 100644 --- a/subjects/argsort/README.md +++ b/subjects/argsort/README.md @@ -3,12 +3,9 @@ ### Instructions Write a program where you define if an argument is sorted or not sorted: -- Your Program should return `T` if an argument is sorted. -- Your Program should return `F` if an argument is not sorted. -- If The argument is empty nothing will be printed. -- If the number of arguments is not 1 Print (`'\n'`). -- If the length argument is equal to 1 Print(`'\n'`). -- Your program should always print (`'\n'`) at the end of the output. +- Your Program should return `T` followed by a newline (`'`\n'`) if an argument is sorted. +- Your Program should return `F` followed by a newline (`'`\n'`) if an argument is not sorted. + ### Usage