From 2b034e267b128e6a0eefc14390599afc1badb96e Mon Sep 17 00:00:00 2001 From: Guy Even Date: Wed, 27 Jun 2018 16:13:06 +0300 Subject: [PATCH] fix(challenges): fixed telephone number validator project (#53) fixed telephone number validator projects to show example telephone numbers on new lines ISSUES CLOSED: #47 --- .../javascript-algorithms-and-data-structures-projects.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects.json b/challenges/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects.json index 662d48c75..3e29c86b5 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects.json +++ b/challenges/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects.json @@ -367,7 +367,7 @@ "description": [ "Return true if the passed string looks like a valid US phone number.", "The user may fill out the form field any way they choose as long as it has the format of a valid US number. The following are examples of valid formats for US numbers (refer to the tests below for other variants):", - "
555-555-5555\n(555)555-5555\n(555) 555-5555\n555 555 5555\n5555555555\n1 555 555 5555
", + "
555-555-5555
(555)555-5555
(555) 555-5555
555 555 5555
5555555555
1 555 555 5555
", "For this challenge you will be presented with a string such as 800-692-7753 or 8oo-six427676;laskdjf. Your job is to validate or reject the US phone number based on any combination of the formats provided above. The area code is required. If the country code is provided, you must confirm that the country code is 1. Return true if the string is a valid US phone number; otherwise return false.", "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code." ],