From 4f34cffaf9449770a066325dcf480910852f689d Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Thu, 14 Jul 2022 19:32:07 +0100 Subject: [PATCH] corrected --- subjects/unzipstring/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/unzipstring/README.md b/subjects/unzipstring/README.md index a8a8d531..6ef797b0 100644 --- a/subjects/unzipstring/README.md +++ b/subjects/unzipstring/README.md @@ -2,7 +2,7 @@ ### Instructions -write a function named `Unzipstring` that takes a string in form of a number and an alphabet (like 3w or 2m3e) then returns the original string (3w ==> www and 2m3e ==> mmeee). +write a function named `Unzipstring` that takes a string in form of a number and an alphabet (like 3w or 2m3e) then returns a new string (3w ==> www and 2m3e ==> mmeee). - The number before the alphabet should be between 0 to 9. - The one alphabet after each number should be between a to z or A to Z.