From 5d526ab0ab84ac1c30c58fb8a3585cfd17592d58 Mon Sep 17 00:00:00 2001 From: Hamza elkhatri <40549481+Hamzaelkhatri@users.noreply.github.com> Date: Mon, 8 Aug 2022 16:07:16 +0100 Subject: [PATCH] docs(fromto):delete space --- subjects/fromto/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/subjects/fromto/README.md b/subjects/fromto/README.md index 837ee0c71..02588d298 100644 --- a/subjects/fromto/README.md +++ b/subjects/fromto/README.md @@ -3,15 +3,18 @@ ### Instructions - Write a function that takes two `integers` and returns a string representing the range of numbers from the first to the second. - - The function can return the numbers in any order. - - The number must be separated by a comma and a space. +<<<<<<< HEAD - If any of the arguments is bigger than 99 or less than 0, the function returns `"invalid"` followed by a newline (`'\n'`). - Add `0` at the first of any number if it is less than 10. +======= +- If any of the arguments is bigger than 99 or less than 0, the function returns `"invalid"` followed by a newline (`'\n'`). +- Add `0` at the first of any number if it is less than 10. +>>>>>>> docs(fromto):delete space - Add a new line (`'\n'`) at the end of the string. ### Expected function