diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68adce01c0e1144d0a90295e.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68adce01c0e1144d0a90295e.md index e1d2a9aa4e5..e8fb1bc953c 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68adce01c0e1144d0a90295e.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68adce01c0e1144d0a90295e.md @@ -11,7 +11,7 @@ Given a string containing one or more words, return an acronym of the words usin - The acronym should consist of the first letter of each word capitalized, unless otherwise noted. - The acronym should ignore the first letter of these words unless they are the first word of the given string: `a`, `for`, `an`, `and`, `by`, and `of`. -- The acronym letters should be returned in order they are given. +- The acronym letters should be returned in the order they are given. - The acronym should not contain any spaces. # --hints-- diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68af0687ef34c76c28ffa54d.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68af0687ef34c76c28ffa54d.md index 2c123a781a3..732d1828577 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68af0687ef34c76c28ffa54d.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68af0687ef34c76c28ffa54d.md @@ -7,7 +7,7 @@ dashedName: challenge-33 # --description-- -Given an input array of seven integers, representing a weeks time, where each integer is the amount of hours spent on your phone that day, determine if it is too much screen time based on these constraints: +Given an input array of seven integers, representing a week's time, where each integer is the amount of hours spent on your phone that day, determine if it is too much screen time based on these constraints: - If any single day has 10 hours or more, it's too much. - If the average of any three days in a row is greater than or equal to 8 hours, it’s too much. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b06e589bf2273243814775.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b06e589bf2273243814775.md index 299fd127ea6..12dc13ff726 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b06e589bf2273243814775.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b06e589bf2273243814775.md @@ -7,7 +7,7 @@ dashedName: challenge-38 # --description-- -Given a string, return a URL friendly version of the string using the following constraints: +Given a string, return a URL-friendly version of the string using the following constraints: - All letters should be lowercase. - All characters that are not letters, numbers, or spaces should be removed. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b1f72371a5ac895ac70a06.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b1f72371a5ac895ac70a06.md index edb8c6c4f38..a8c27719ddd 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b1f72371a5ac895ac70a06.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b1f72371a5ac895ac70a06.md @@ -9,7 +9,7 @@ dashedName: challenge-42 Given a video size, a unit for the video size, a hard drive capacity, and a unit for the hard drive, return the number of videos the hard drive can store using the following constraints: -- The unit for the video size can be bytes (`"B"`), kilobytes (`"KB"`), or megabytes (`"MB"`), or gigabytes (`"GB"`). +- The unit for the video size can be bytes (`"B"`), kilobytes (`"KB"`), megabytes (`"MB"`), or gigabytes (`"GB"`). - If not given one of the video units above, return `"Invalid video unit"`. - The unit of the hard drive capacity can be gigabytes (`"GB"`) or terabytes (`"TB"`). - If not given one of the hard drive units above, return `"Invalid drive unit"`. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b7687dded630607aceccb1.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b7687dded630607aceccb1.md index 7cb941e7ad8..478fc96fe79 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b7687dded630607aceccb1.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68b7687dded630607aceccb1.md @@ -11,7 +11,7 @@ Given a phone number in the format `"+A (BBB) CCC-DDDD"`, where each letter repr - `A` represents the country code and can be any number of digits. - `BBB` represents the area code and will always be three digits. -- `CCC` and `DDDD` represent the local number and will always three and four digits long, respectively. +- `CCC` and `DDDD` represent the local number and will always be three and four digits long, respectively. Determine if it's a spam number based on the following criteria: diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68adce01c0e1144d0a90295e.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68adce01c0e1144d0a90295e.md index 3f56c5d0d05..179a2750ccf 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68adce01c0e1144d0a90295e.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68adce01c0e1144d0a90295e.md @@ -11,7 +11,7 @@ Given a string containing one or more words, return an acronym of the words usin - The acronym should consist of the first letter of each word capitalized, unless otherwise noted. - The acronym should ignore the first letter of these words unless they are the first word of the given string: `a`, `for`, `an`, `and`, `by`, and `of`. -- The acronym letters should be returned in order they are given. +- The acronym letters should be returned in the order they are given. - The acronym should not contain any spaces. # --hints-- diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68af0687ef34c76c28ffa54d.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68af0687ef34c76c28ffa54d.md index 964032a4632..b1681245d1b 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68af0687ef34c76c28ffa54d.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68af0687ef34c76c28ffa54d.md @@ -7,7 +7,7 @@ dashedName: challenge-33 # --description-- -Given an input array of seven integers, representing a weeks time, where each integer is the amount of hours spent on your phone that day, determine if it is too much screen time based on these constraints: +Given an input array of seven integers, representing a week's time, where each integer is the amount of hours spent on your phone that day, determine if it is too much screen time based on these constraints: - If any single day has 10 hours or more, it's too much. - If the average of any three days in a row is greater than or equal to 8 hours, it’s too much. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b06e589bf2273243814775.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b06e589bf2273243814775.md index afef722bd1d..0d31fdb1465 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b06e589bf2273243814775.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b06e589bf2273243814775.md @@ -7,7 +7,7 @@ dashedName: challenge-38 # --description-- -Given a string, return a URL friendly version of the string using the following constraints: +Given a string, return a URL-friendly version of the string using the following constraints: - All letters should be lowercase. - All characters that are not letters, numbers, or spaces should be removed. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b1f72371a5ac895ac70a06.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b1f72371a5ac895ac70a06.md index 28e0cca1cc7..01adc7c9d40 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b1f72371a5ac895ac70a06.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b1f72371a5ac895ac70a06.md @@ -9,7 +9,7 @@ dashedName: challenge-42 Given a video size, a unit for the video size, a hard drive capacity, and a unit for the hard drive, return the number of videos the hard drive can store using the following constraints: -- The unit for the video size can be bytes (`"B"`), kilobytes (`"KB"`), or megabytes (`"MB"`), or gigabytes (`"GB"`). +- The unit for the video size can be bytes (`"B"`), kilobytes (`"KB"`), megabytes (`"MB"`), or gigabytes (`"GB"`). - If not given one of the video units above, return `"Invalid video unit"`. - The unit of the hard drive capacity can be gigabytes (`"GB"`) or terabytes (`"TB"`). - If not given one of the hard drive units above, return `"Invalid drive unit"`. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b7687dded630607aceccb1.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b7687dded630607aceccb1.md index aeb992b9546..566cbd467cb 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b7687dded630607aceccb1.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68b7687dded630607aceccb1.md @@ -11,7 +11,7 @@ Given a phone number in the format `"+A (BBB) CCC-DDDD"`, where each letter repr - `A` represents the country code and can be any number of digits. - `BBB` represents the area code and will always be three digits. -- `CCC` and `DDDD` represent the local number and will always three and four digits long, respectively. +- `CCC` and `DDDD` represent the local number and will always be three and four digits long, respectively. Determine if it's a spam number based on the following criteria: