From ab56f24ab7a50e2645ac7ae8b0f8df160314722e Mon Sep 17 00:00:00 2001 From: Anastasios Chatzialexiou <16361161+tasxatzial@users.noreply.github.com> Date: Mon, 23 Dec 2024 01:01:59 +0200 Subject: [PATCH] Add a story to the phone-number exercise --- .../phone-number/{description.md => instructions.md} | 2 +- exercises/phone-number/introduction.md | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) rename exercises/phone-number/{description.md => instructions.md} (98%) create mode 100644 exercises/phone-number/introduction.md diff --git a/exercises/phone-number/description.md b/exercises/phone-number/instructions.md similarity index 98% rename from exercises/phone-number/description.md rename to exercises/phone-number/instructions.md index 5cfc506d7b..62ba48e96f 100644 --- a/exercises/phone-number/description.md +++ b/exercises/phone-number/instructions.md @@ -1,4 +1,4 @@ -# Description +# Instructions Clean up user-entered phone numbers so that they can be sent SMS messages. diff --git a/exercises/phone-number/introduction.md b/exercises/phone-number/introduction.md new file mode 100644 index 0000000000..c4142c5af7 --- /dev/null +++ b/exercises/phone-number/introduction.md @@ -0,0 +1,12 @@ +# Introduction + +You've joined LinkLine, a leading communications company working to ensure reliable connections for everyone. +The team faces a big challenge: users submit phone numbers in all sorts of formats — dashes, spaces, dots, parentheses, and even prefixes. +Some numbers are valid, while others are impossible to use. + +Your mission is to turn this chaos into order. +You'll clean up valid numbers, formatting them appropriately for use in the system. +At the same time, you'll identify and filter out any invalid entries. + +The success of LinkLine's operations depends on your ability to separate the useful from the unusable. +Are you ready to take on the challenge and keep the connections running smoothly?