From 7fe5f0851c812d495370c84c30654cc1f5bbab31 Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Sun, 3 Jul 2022 12:40:02 +0100 Subject: [PATCH] Corrected --- subjects/samecase/REDME.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/samecase/REDME.md b/subjects/samecase/REDME.md index d6f45659..8268ce5e 100644 --- a/subjects/samecase/REDME.md +++ b/subjects/samecase/REDME.md @@ -3,9 +3,9 @@ ### Instructions Write a program that takes 2 characters as arguments and does the following: -If either of the characters is not a letter, return -1. -If both characters are the same case, return 1. -If both characters are letters but not the same case, return 0. +- If either of the characters is not a letter, return -1. +- If both characters are the same case, return 1. +- If both characters are letters but not the same case, return 0. - A newline character should follow all outputs. - If the argument is more than one character or if it's empty, return a newline.