diff --git a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-personal-portfolio-webpage.english.md b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-personal-portfolio-webpage.english.md index a7fe8829e5..bfb50c615c 100644 --- a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-personal-portfolio-webpage.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-personal-portfolio-webpage.english.md @@ -24,7 +24,6 @@ You can use HTML, JavaScript, and CSS to complete this project. Plain CSS is rec User Story #11: The navbar should always be at the top of the viewport. You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-product-landing-page.english.md b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-product-landing-page.english.md index ad23cdc64b..568d94b13e 100644 --- a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-product-landing-page.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-product-landing-page.english.md @@ -28,7 +28,6 @@ You can use HTML, JavaScript, and CSS to complete this project. Plain CSS is rec User Story #15: My product landing page should utilize CSS flexbox at least once. You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-survey-form.english.md b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-survey-form.english.md index c2eb9c6bd3..2c82f3332e 100644 --- a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-survey-form.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-survey-form.english.md @@ -29,7 +29,6 @@ You can use HTML, JavaScript, and CSS to complete this project. Plain CSS is rec User Story #16: Inside the form element, I am presented with a button with id="submit" to submit all my inputs. You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-technical-documentation-page.english.md b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-technical-documentation-page.english.md index 266d56105c..a6fb7ad849 100644 --- a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-technical-documentation-page.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-technical-documentation-page.english.md @@ -28,7 +28,6 @@ You can use HTML, JavaScript, and CSS to complete this project. Plain CSS is rec User Story #15: My Technical Documentation page should use at least one media query. You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-tribute-page.english.md b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-tribute-page.english.md index 96649c01c9..f3bd192498 100644 --- a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-tribute-page.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-tribute-page.english.md @@ -22,7 +22,6 @@ You can use HTML, JavaScript, and CSS to complete this project. Plain CSS is rec User Story #9: The img element should be centered within its parent element. You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js. Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.english.md index bad4de2974..565787d64f 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.english.md @@ -10,7 +10,6 @@ forumTopicId: 16000
Check if a value is classified as a boolean primitive. Return true or false. Boolean primitives are true and false. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/chunky-monkey.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/chunky-monkey.english.md index b7a9ecc108..d036e3ae21 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/chunky-monkey.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/chunky-monkey.english.md @@ -9,7 +9,6 @@ forumTopicId: 16005 ## Description
Write a function that splits an array (first argument) into groups the length of size (second argument) and returns them as a two-dimensional array. -Remember to use Read-Search-Ask if you get stuck. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/confirm-the-ending.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/confirm-the-ending.english.md index 91747bcb31..dcb941d77c 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/confirm-the-ending.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/confirm-the-ending.english.md @@ -10,7 +10,6 @@ forumTopicId: 16006
Check if a string (first argument, str) ends with the given target string (second argument, target). This challenge can be solved with the .endsWith() method, which was introduced in ES2015. But for the purpose of this challenge, we would like you to use one of the JavaScript substring methods instead. -Remember to use Read-Search-Ask if you get stuck. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/factorialize-a-number.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/factorialize-a-number.english.md index 77665aebd3..0587735f37 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/factorialize-a-number.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/factorialize-a-number.english.md @@ -13,7 +13,6 @@ If the integer is represented with the letter n, a factorial is the product of a Factorials are often represented with the shorthand notation n! For example: 5! = 1 * 2 * 3 * 4 * 5 = 120 Only integers greater than or equal to zero will be supplied to the function. -Remember to use Read-Search-Ask if you get stuck. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer.english.md index b842b3734d..22ab4e7a66 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/falsy-bouncer.english.md @@ -11,7 +11,6 @@ forumTopicId: 16014 Remove all falsy values from an array. Falsy values in JavaScript are false, null, 0, "", undefined, and NaN. Hint: Try converting each value to a Boolean. -Remember to use Read-Search-Ask if you get stuck. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/find-the-longest-word-in-a-string.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/find-the-longest-word-in-a-string.english.md index 63f8fe0130..79bc1b825a 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/find-the-longest-word-in-a-string.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/find-the-longest-word-in-a-string.english.md @@ -10,7 +10,6 @@ forumTopicId: 16015
Return the length of the longest word in the provided sentence. Your response should be a number. -Remember to use Read-Search-Ask if you get stuck. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/finders-keepers.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/finders-keepers.english.md index 48cdc03f84..084b5a8961 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/finders-keepers.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/finders-keepers.english.md @@ -9,7 +9,6 @@ forumTopicId: 16016 ## Description
Create a function that looks through an array (first argument) and returns the first element in the array that passes a truth test (second argument). If no element passes the test, return undefined. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.english.md index 3ef24a2886..be54a9ca0b 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.english.md @@ -12,7 +12,6 @@ Return true if the string in the first element of the array contains all of the For example, ["hello", "Hello"], should return true because all of the letters in the second string are present in the first, ignoring case. The arguments ["hello", "hey"] should return false because the string "hello" does not contain a "y". Lastly, ["Alien", "line"], should return true because all of the letters in "line" are present in "Alien". -Remember to use Read-Search-Ask if you get stuck. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/repeat-a-string-repeat-a-string.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/repeat-a-string-repeat-a-string.english.md index a77c92a7f6..ed0cdbf9af 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/repeat-a-string-repeat-a-string.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/repeat-a-string-repeat-a-string.english.md @@ -9,7 +9,6 @@ forumTopicId: 16041 ## Description
Repeat a given string str (first argument) for num times (second argument). Return an empty string if num is not a positive number. -Remember to use Read-Search-Ask if you get stuck. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/return-largest-numbers-in-arrays.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/return-largest-numbers-in-arrays.english.md index 04d4624008..17de12da49 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/return-largest-numbers-in-arrays.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/return-largest-numbers-in-arrays.english.md @@ -10,7 +10,6 @@ forumTopicId: 16042
Return an array consisting of the largest number from each provided sub-array. For simplicity, the provided array will contain exactly 4 sub-arrays. Remember, you can iterate through an array with a simple for loop, and access each member with array syntax arr[i]. -Remember to use Read-Search-Ask if you get stuck. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/reverse-a-string.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/reverse-a-string.english.md index d8d1e14031..d5c01fec12 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/reverse-a-string.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/reverse-a-string.english.md @@ -11,7 +11,6 @@ forumTopicId: 16043 Reverse the provided string. You may need to turn the string into an array before you can reverse it. Your result must be a string. -Remember to use Read-Search-Ask if you get stuck. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/slice-and-splice.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/slice-and-splice.english.md index e7fcc0f9cc..5ac19b2152 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/slice-and-splice.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/slice-and-splice.english.md @@ -13,7 +13,6 @@ You are given two arrays and an index. Use the array methods slice and splice to copy each element of the first array into the second array, in order. Begin inserting elements at index n of the second array. Return the resulting array. The input arrays should remain the same after the function runs. -Remember to use Read-Search-Ask if you get stuck. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/title-case-a-sentence.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/title-case-a-sentence.english.md index ffad913d8e..0460ff93b2 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/title-case-a-sentence.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/title-case-a-sentence.english.md @@ -10,7 +10,6 @@ forumTopicId: 16088
Return the provided string with the first letter of each word capitalized. Make sure the rest of the word is in lower case. For the purpose of this exercise, you should also capitalize connecting words like "the" and "of". -Remember to use Read-Search-Ask if you get stuck. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/truncate-a-string.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/truncate-a-string.english.md index 6bbbef00e1..a86e7c47d5 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/truncate-a-string.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/truncate-a-string.english.md @@ -9,7 +9,6 @@ forumTopicId: 16089 ## Description
Truncate a string (first argument) if it is longer than the given maximum string length (second argument). Return the truncated string with a ... ending. -Remember to use Read-Search-Ask if you get stuck. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/where-do-i-belong.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/where-do-i-belong.english.md index 9129a8d1dc..536c696b9e 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/where-do-i-belong.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/where-do-i-belong.english.md @@ -11,7 +11,6 @@ forumTopicId: 16094 Return the lowest index at which a value (second argument) should be inserted into an array (first argument) once it has been sorted. The returned value should be a number. For example, getIndexToIns([1,2,3,4], 1.5) should return 1 because it is greater than 1 (index 0), but less than 2 (index 1). Likewise, getIndexToIns([20,3,5], 19) should return 2 because once the array has been sorted it will look like [3,5,20] and 19 is less than 20 (index 2) and greater than 5 (index 1). -Remember to use Read-Search-Ask if you get stuck. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/arguments-optional.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/arguments-optional.english.md index b007fe4de3..b42494b521 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/arguments-optional.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/arguments-optional.english.md @@ -14,7 +14,6 @@ Calling this returned function with a single argument will then return the sum: var sumTwoAnd = addTogether(2); sumTwoAnd(3) returns 5. If either argument isn't a valid number, return undefined. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents.english.md index d8db47cb30..8e908e7d5e 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents.english.md @@ -10,7 +10,6 @@ forumTopicId: 14273
Return an English translated sentence of the passed binary string. The binary string will be space separated. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md index 04291b2fe6..64241c27c1 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md @@ -9,7 +9,6 @@ forumTopicId: 16007 ## Description
Convert the characters &, <, >, " (double quote), and ' (apostrophe), in a string to their corresponding HTML entities. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/diff-two-arrays.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/diff-two-arrays.english.md index 69005afdbd..b0466fe601 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/diff-two-arrays.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/diff-two-arrays.english.md @@ -9,7 +9,6 @@ forumTopicId: 16008 ## Description
Compare two arrays and return a new array with any items only found in one of the two given arrays, but not both. In other words, return the symmetric difference of the two arrays. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. Note
You can return the array with its elements in any order.
diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/dna-pairing.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/dna-pairing.english.md index f77b14b1b8..580c713aa0 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/dna-pairing.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/dna-pairing.english.md @@ -13,7 +13,6 @@ The DNA strand is missing the pairing element. Take each character, get its pair Return the provided character as the first element in each array. For example, for the input GCG, return [["G", "C"], ["C","G"],["G", "C"]] The character and its pair are paired up in an array, and all the arrays are grouped into one encapsulating array. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/drop-it.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/drop-it.english.md index df2798b437..8edfd6fb33 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/drop-it.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/drop-it.english.md @@ -10,7 +10,6 @@ forumTopicId: 16010
Given the array arr, iterate through and remove each element starting from the first element (the 0 index) until the function func returns true when the iterated element is passed through it. Then return the rest of the array once the condition is satisfied, otherwise, arr should be returned as an empty array. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/everything-be-true.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/everything-be-true.english.md index c9b6b2d8f3..dcfbc6f22a 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/everything-be-true.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/everything-be-true.english.md @@ -12,7 +12,6 @@ Check if the predicate (second argument) is truthy on all elements of In other words, you are given an array collection of objects. The predicate pre will be an object property and you need to return true if its value is truthy. Otherwise, return false. In JavaScript, truthy values are values that translate to true when evaluated in a Boolean context. Remember, you can access object properties through either dot notation or [] notation. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/make-a-person.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/make-a-person.english.md index fccfabe56a..18eeebbbaa 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/make-a-person.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/make-a-person.english.md @@ -21,7 +21,6 @@ setFullName(firstAndLast) Run the tests to see the expected output for each method. The methods that take an argument must accept only one argument and it has to be a string. These methods must be the only available means of interacting with the object. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/map-the-debris.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/map-the-debris.english.md index 85457b6a43..17c4aa3241 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/map-the-debris.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/map-the-debris.english.md @@ -12,7 +12,6 @@ The array will contain objects in the format {name: 'name', avgAlt: avgAlt You can read about orbital periods on Wikipedia. The values should be rounded to the nearest whole number. The body being orbited is Earth. The radius of the earth is 6367.4447 kilometers, and the GM value of earth is 398600.4418 km3s-2. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/missing-letters.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/missing-letters.english.md index 032526639a..001fa00025 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/missing-letters.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/missing-letters.english.md @@ -10,7 +10,6 @@ forumTopicId: 16023
Find the missing letter in the passed letter range and return it. If all letters are present in the range, return undefined. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/pig-latin.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/pig-latin.english.md index e3f1f1e244..c7455a04d9 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/pig-latin.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/pig-latin.english.md @@ -13,7 +13,6 @@ Translate the provided string to pig latin. If a word begins with a vowel you just add "way" to the end. If a word does not contain a vowel, just add "ay" to the end. Input strings are guaranteed to be English words in all lowercase. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/search-and-replace.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/search-and-replace.english.md index 6f8d9ab26e..210707cb16 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/search-and-replace.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/search-and-replace.english.md @@ -13,7 +13,6 @@ First argument is the sentence to perform the search and replace on. Second argument is the word that you will be replacing (before). Third argument is what you will be replacing the second argument with (after). Note
Preserve the case of the first character in the original word when you are replacing it. For example if you mean to replace the word "Book" with the word "dog", it should be replaced as "Dog" -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/seek-and-destroy.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/seek-and-destroy.english.md index 0ab29421f3..1179b4254a 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/seek-and-destroy.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/seek-and-destroy.english.md @@ -10,7 +10,6 @@ forumTopicId: 16046
You will be provided with an initial array (the first argument in the destroyer function), followed by one or more arguments. Remove all elements from the initial array that are of the same value as these arguments. Note
You have to use the arguments object. -Remember to use Read-Search-Ask if you get stuck. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/smallest-common-multiple.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/smallest-common-multiple.english.md index 195666429c..98326354d3 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/smallest-common-multiple.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/smallest-common-multiple.english.md @@ -11,7 +11,6 @@ forumTopicId: 16075 Find the smallest common multiple of the provided parameters that can be evenly divided by both, as well as by all sequential numbers in the range between these parameters. The range will be an array of two numbers that will not necessarily be in numerical order. For example, if given 1 and 3, find the smallest common multiple of both 1 and 3 that is also evenly divisible by all numbers between 1 and 3. The answer here would be 6. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union.english.md index f20413fa5a..7bd7488743 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union.english.md @@ -12,7 +12,6 @@ Write a function that takes two or more arrays and returns a new array of unique In other words, all values present from all arrays should be included in their original order, but with no duplicates in the final array. The unique numbers should be sorted by their original order, but the final array should not be sorted in numerical order. Check the assertion tests for examples. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/spinal-tap-case.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/spinal-tap-case.english.md index 17d4374138..806849c35d 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/spinal-tap-case.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/spinal-tap-case.english.md @@ -9,7 +9,6 @@ forumTopicId: 16078 ## Description
Convert a string to spinal case. Spinal case is all-lowercase-words-joined-by-dashes. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/steamroller.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/steamroller.english.md index 91fc3569a0..d03d289b76 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/steamroller.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/steamroller.english.md @@ -9,7 +9,6 @@ forumTopicId: 16079 ## Description
Flatten a nested array. You must account for varying levels of nesting. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-numbers-in-a-range.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-numbers-in-a-range.english.md index 15b39dbb92..222e01817f 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-numbers-in-a-range.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-numbers-in-a-range.english.md @@ -12,7 +12,6 @@ We'll pass you an array of two numbers. Return the sum of those two numbers plus For example, sumAll([4,1]) should return 10 because sum of all the numbers between 1 and 4 (both inclusive) is 10. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-odd-fibonacci-numbers.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-odd-fibonacci-numbers.english.md index 30d2abf0a5..7a894822aa 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-odd-fibonacci-numbers.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-odd-fibonacci-numbers.english.md @@ -11,7 +11,6 @@ forumTopicId: 16084 Given a positive integer num, return the sum of all odd Fibonacci numbers that are less than or equal to num. The first two numbers in the Fibonacci sequence are 1 and 1. Every additional number in the sequence is the sum of the two previous numbers. The first six numbers of the Fibonacci sequence are 1, 1, 2, 3, 5 and 8. For example, sumFibs(10) should return 10 because all odd Fibonacci numbers less than or equal to 10 are 1, 1, 3, and 5. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-primes.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-primes.english.md index 8711790a8e..701e1b3bd4 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-primes.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-primes.english.md @@ -16,7 +16,6 @@ contrast, 4 is not prime since it is divisible by 1, 2 and 4. Rewrite `sumPrimes` so it returns the sum of all prime numbers that are less than or equal to num. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/wherefore-art-thou.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/wherefore-art-thou.english.md index 7d00040921..1c1d1da682 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/wherefore-art-thou.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/wherefore-art-thou.english.md @@ -10,7 +10,6 @@ forumTopicId: 16092
Make a function that looks through an array of objects (first argument) and returns an array of all objects that have matching name and value pairs (second argument). Each name and value pair of the source object has to be present in the object from the collection if it is to be included in the returned array. For example, if the first argument is [{ first: "Romeo", last: "Montague" }, { first: "Mercutio", last: null }, { first: "Tybalt", last: "Capulet" }], and the second argument is { last: "Capulet" }, then you must return the third object from the array (the first argument), because it contains the name and its value, that was passed on as the second argument. -Remember to use Read-Search-Ask if you get stuck. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/caesars-cipher.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/caesars-cipher.english.md index ed7df943fb..530258751f 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/caesars-cipher.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/caesars-cipher.english.md @@ -12,7 +12,6 @@ One of the simplest and most widely known ciphers is a Caesar ci A common modern use is the ROT13 cipher, where the values of the letters are shifted by 13 places. Thus 'A' ↔ 'N', 'B' ↔ 'O' and so on. Write a function which takes a ROT13 encoded string as input and returns a decoded string. All letters will be uppercase. Do not transform any non-alphabetic character (i.e. spaces, punctuation), but do pass them on. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/cash-register.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/cash-register.english.md index 44b5dfa95c..42c1f7bebc 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/cash-register.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/cash-register.english.md @@ -14,7 +14,6 @@ The checkCashRegister() function should always return an object wit Return {status: "INSUFFICIENT_FUNDS", change: []} if cash-in-drawer is less than the change due, or if you cannot return the exact change. Return {status: "CLOSED", change: [...]} with cash-in-drawer as the value for the key change if it is equal to the change due. Otherwise, return {status: "OPEN", change: [...]}, with the change due in coins and bills, sorted in highest to lowest order, as the value of the change key. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
Currency UnitAmount
Penny$0.01 (PENNY)
Nickel$0.05 (NICKEL)
Dime$0.1 (DIME)
Quarter$0.25 (QUARTER)
Dollar$1 (DOLLAR)
Five Dollars$5 (FIVE)
Ten Dollars$10 (TEN)
Twenty Dollars$20 (TWENTY)
One-hundred Dollars$100 (ONE HUNDRED)
diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/palindrome-checker.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/palindrome-checker.english.md index c18154c0b8..ab3edad101 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/palindrome-checker.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/palindrome-checker.english.md @@ -13,7 +13,6 @@ A palindrome is a word or sentence that's spelled the same way both f Note
You'll need to remove all non-alphanumeric characters (punctuation, spaces and symbols) and turn everything into the same case (lower or upper case) in order to check for palindromes. We'll pass strings with varying formats, such as "racecar", "RaceCar", and "race CAR" among others. We'll also pass strings with special symbols, such as "2A3*3a2", "2A3 3a2", and "2_A3*3#A2". -Remember to use Read-Search-Ask if you get stuck. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/roman-numeral-converter.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/roman-numeral-converter.english.md index b216c38536..178f33b256 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/roman-numeral-converter.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/roman-numeral-converter.english.md @@ -10,7 +10,6 @@ forumTopicId: 16044
Convert the given number into a roman numeral. All roman numerals answers should be provided in upper-case. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/telephone-number-validator.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/telephone-number-validator.english.md index dd63df89e9..edbc2d05d1 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/telephone-number-validator.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/telephone-number-validator.english.md @@ -12,7 +12,6 @@ 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
(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. ## Instructions diff --git a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-drum-machine.english.md b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-drum-machine.english.md index e4b7a0fa96..a284ebe998 100644 --- a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-drum-machine.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-drum-machine.english.md @@ -20,7 +20,6 @@ You can use any mix of HTML, JavaScript, CSS, Bootstrap, SASS, React, Redux, and User Story #7: When a .drum-pad is triggered, a string describing the associated audio clip is displayed as the inner text of the #display element (each string must be unique). You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-javascript-calculator.english.md b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-javascript-calculator.english.md index aa7f79ba87..5e1bda08ab 100644 --- a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-javascript-calculator.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-javascript-calculator.english.md @@ -30,7 +30,6 @@ You can use any mix of HTML, JavaScript, CSS, Bootstrap, SASS, React, Redux, and EXAMPLE: 3 + 5 x 6 - 2 / 4 =
You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-markdown-previewer.english.md b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-markdown-previewer.english.md index d41df3a124..bb327a29a9 100644 --- a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-markdown-previewer.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-markdown-previewer.english.md @@ -20,7 +20,6 @@ You can use any mix of HTML, JavaScript, CSS, Bootstrap, SASS, React, Redux, and Optional Bonus (you do not need to make this test pass): My markdown previewer interprets carriage returns and renders them as br (line break) elements. You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-pomodoro-clock.english.md b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-pomodoro-clock.english.md index d7e0ea6ac0..8b2a09d0e7 100644 --- a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-pomodoro-clock.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-pomodoro-clock.english.md @@ -41,7 +41,6 @@ You can use any mix of HTML, JavaScript, CSS, Bootstrap, SASS, React, Redux, and User Story #28: The audio element with id of beep must stop playing and be rewound to the beginning when the element with the id of reset is clicked. You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-random-quote-machine.english.md b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-random-quote-machine.english.md index e8de96d351..7f48414d23 100644 --- a/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-random-quote-machine.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/front-end-libraries-projects/build-a-random-quote-machine.english.md @@ -24,7 +24,6 @@ You can use any mix of HTML, JavaScript, CSS, Bootstrap, SASS, React, Redux, and User Story #11: The #quote-box wrapper element should be horizontally centered. Please run tests with browser's zoom level at 100% and page maximized. You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-bar-chart.english.md b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-bar-chart.english.md index db4373e739..080af42c78 100644 --- a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-bar-chart.english.md +++ b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-bar-chart.english.md @@ -27,7 +27,6 @@ You can use HTML, JavaScript, CSS, and the D3 svg-based visualization library. T Here is the dataset you will need to complete this project: https://raw.githubusercontent.com/freeCodeCamp/ProjectReferenceData/master/GDP-data.json You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js. Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-choropleth-map.english.md b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-choropleth-map.english.md index c8f3bd5a6b..e167a075ed 100644 --- a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-choropleth-map.english.md +++ b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-choropleth-map.english.md @@ -25,7 +25,6 @@ You can use HTML, JavaScript, CSS, and the D3 svg-based visualization library. R Here are the datasets you will need to complete this project:
You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-heat-map.english.md b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-heat-map.english.md index 19d3b50c76..26a96f0bc3 100644 --- a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-heat-map.english.md +++ b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-heat-map.english.md @@ -31,7 +31,6 @@ You can use HTML, JavaScript, CSS, and the D3 svg-based visualization library. R Here is the dataset you will need to complete this project: https://raw.githubusercontent.com/freeCodeCamp/ProjectReferenceData/master/global-temperature.json You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-scatterplot-graph.english.md b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-scatterplot-graph.english.md index cadf38d74f..509738489a 100644 --- a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-scatterplot-graph.english.md +++ b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-scatterplot-graph.english.md @@ -29,7 +29,6 @@ You can use HTML, JavaScript, CSS, and the D3 svg-based visualization library. T Here is the dataset you will need to complete this project: https://raw.githubusercontent.com/freeCodeCamp/ProjectReferenceData/master/cyclist-data.json You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-treemap-diagram.english.md b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-treemap-diagram.english.md index d56ee4e3be..d14c6e0677 100644 --- a/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-treemap-diagram.english.md +++ b/curriculum/challenges/english/04-data-visualization/data-visualization-projects/visualize-data-with-a-treemap-diagram.english.md @@ -25,7 +25,6 @@ You can use HTML, JavaScript, CSS, and the D3 svg-based visualization library. T For this project you can use any of the following datasets:
You can build your project by forking this CodePen pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. -Remember to use the Read-Search-Ask method if you get stuck. ## Instructions diff --git a/curriculum/challenges/english/08-coding-interview-prep/algorithms/find-the-symmetric-difference.english.md b/curriculum/challenges/english/08-coding-interview-prep/algorithms/find-the-symmetric-difference.english.md index 6080d617c3..8e1b03d681 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/algorithms/find-the-symmetric-difference.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/algorithms/find-the-symmetric-difference.english.md @@ -9,7 +9,6 @@ forumTopicId: 301611
Create a function that takes two or more arrays and returns an array of the symmetric difference ( or ) of the provided arrays. Given two sets (for example set A = {1, 2, 3} and set B = {2, 3, 4}), the mathematical term "symmetric difference" of two sets is the set of elements which are in either of the two sets, but not in both (A △ B = C = {1, 4}). For every additional symmetric difference you take (say on a set D = {2, 3}), you should get the set with elements which are in either of the two the sets but not both (C △ D = {1, 4} △ {2, 3} = {1, 2, 3, 4}). The resulting array must contain only unique values (no duplicates). -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/08-coding-interview-prep/algorithms/inventory-update.english.md b/curriculum/challenges/english/08-coding-interview-prep/algorithms/inventory-update.english.md index 4ec06a42a1..b8ca781f12 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/algorithms/inventory-update.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/algorithms/inventory-update.english.md @@ -8,7 +8,6 @@ forumTopicId: 16019 ## Description
Compare and update the inventory stored in a 2D array against a second 2D array of a fresh delivery. Update the current existing inventory item quantities (in arr1). If an item cannot be found, add the new item and quantity into the inventory array. The returned inventory array should be in alphabetical order by item. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/08-coding-interview-prep/algorithms/no-repeats-please.english.md b/curriculum/challenges/english/08-coding-interview-prep/algorithms/no-repeats-please.english.md index 7e412f889d..8ba7eb2586 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/algorithms/no-repeats-please.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/algorithms/no-repeats-please.english.md @@ -9,7 +9,6 @@ forumTopicId: 16037
Return the number of total permutations of the provided string that don't have repeated consecutive letters. Assume that all characters in the provided string are each unique. For example, aab should return 2 because it has 6 total permutations (aab, aab, aba, aba, baa, baa), but only 2 of them (aba and aba) don't have the same letter (in this case a) repeating. -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
## Instructions diff --git a/curriculum/challenges/english/08-coding-interview-prep/algorithms/pairwise.english.md b/curriculum/challenges/english/08-coding-interview-prep/algorithms/pairwise.english.md index 2ea875b2e7..e05a9bf408 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/algorithms/pairwise.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/algorithms/pairwise.english.md @@ -13,7 +13,6 @@ For example pairwise([7, 9, 11, 13, 15], 20) returns 6
Index01234
Value79111315
Below we'll take their corresponding indices and add them. 7 + 13 = 20 → Indices 0 + 3 = 3
9 + 11 = 20 → Indices 1 + 2 = 3
3 + 3 = 6 → Return 6 -Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code. ## Instructions diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-camper-leaderboard.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-camper-leaderboard.english.md index e5a18cf475..1621b899d8 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-camper-leaderboard.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-camper-leaderboard.english.md @@ -14,7 +14,6 @@ Fulfill the below https://buttercup-island.glitch.me/latest. -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it on the freeCodeCamp forum. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-light-bright-app.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-light-bright-app.english.md index 9fd1f44b92..a0596d5585 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-light-bright-app.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-light-bright-app.english.md @@ -17,7 +17,6 @@ forumTopicId: 302350 User Story: I should get a circle of different color on each click. User Story: I can click on the 'Reset' button to remove the recent color. User Story: I can click on the 'Reset All' button to remove all the colors from the circles. -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-pong-game.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-pong-game.english.md index 1c56f2192f..ae42bc6c43 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-pong-game.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-pong-game.english.md @@ -15,7 +15,6 @@ forumTopicId: 302353 User Story: The computer can control the other paddle. User Story: The computer's paddle is unbeatable. It should never miss the ball. User Story: The game keeps track of the player and computer's score. -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-recipe-box.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-recipe-box.english.md index 5d35bf278c..beb01677cc 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-recipe-box.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-recipe-box.english.md @@ -17,7 +17,6 @@ Fulfill the below Hint: You should prefix your local storage keys on CodePen, i.e. _username_recipes -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-roguelike-dungeon-crawler-game.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-roguelike-dungeon-crawler-game.english.md index cd77437ce3..614e3407fc 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-roguelike-dungeon-crawler-game.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-roguelike-dungeon-crawler-game.english.md @@ -19,7 +19,6 @@ Fulfill the below Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-simon-game.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-simon-game.english.md index 68fc969519..c1e1be1f07 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-simon-game.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-simon-game.english.md @@ -19,7 +19,6 @@ Fulfill the below Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-tic-tac-toe-game.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-tic-tac-toe-game.english.md index 52843df1c8..4108ce5a10 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-tic-tac-toe-game.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-tic-tac-toe-game.english.md @@ -13,7 +13,6 @@ Fulfill the below User Story: I can choose whether I want to play as X or O. -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-wikipedia-viewer.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-wikipedia-viewer.english.md index e66832169e..75df5da507 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-wikipedia-viewer.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-a-wikipedia-viewer.english.md @@ -15,7 +15,6 @@ Fulfill the below Hint #1: Here's a URL you can use to get a random Wikipedia article: https://en.wikipedia.org/wiki/Special:Random. Hint #2: Here's an entry on using Wikipedia's API: https://www.mediawiki.org/wiki/API:Main_page. Hint #3: Use this link to experiment with Wikipedia's API. -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-the-game-of-life.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-the-game-of-life.english.md index dd93fc9a09..e5ba369f26 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-the-game-of-life.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/build-the-game-of-life.english.md @@ -18,7 +18,6 @@ Fulfill the below https://www.youtube.com/watch?v=E8kUJL04ELA Hint: Here's an overview of Conway's Game of Life with rules for your reference: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/map-data-across-the-globe.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/map-data-across-the-globe.english.md index e81d605edb..89e5003d02 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/map-data-across-the-globe.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/map-data-across-the-globe.english.md @@ -14,7 +14,6 @@ Fulfill the following User Story: I can tell the relative size of the meteorite, just by looking at the way it's represented on the map. User Story: I can mouse over the meteorite's data point for additional data. Hint: Here's a dataset you can use to build this: https://raw.githubusercontent.com/freeCodeCamp/ProjectReferenceData/master/meteorite-strike-data.json -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/p2p-video-chat-application.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/p2p-video-chat-application.english.md index 4f1d0d8cbf..1339680541 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/p2p-video-chat-application.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/p2p-video-chat-application.english.md @@ -19,7 +19,6 @@ Fulfill the below Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your Glitch App. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/show-national-contiguity-with-a-force-directed-graph.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/show-national-contiguity-with-a-force-directed-graph.english.md index 64a7424672..d5381a50b6 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/show-national-contiguity-with-a-force-directed-graph.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/show-national-contiguity-with-a-force-directed-graph.english.md @@ -14,7 +14,6 @@ Fulfill the following User Story: I can see each country's flag on its node. Hint: Here's a dataset you can use to build this: https://raw.githubusercontent.com/DealPete/forceDirected/master/countries.json Hint: You can create a spritesheet of national flags at https://www.flag-sprites.com. -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/show-the-local-weather.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/show-the-local-weather.english.md index 813717b40e..9cea38c177 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/show-the-local-weather.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/show-the-local-weather.english.md @@ -15,7 +15,6 @@ forumTopicId: 302368 User Story: I can see a different icon or background image (e.g. snowy mountain, hot desert) depending on the weather. User Story: I can push a button to toggle between Fahrenheit and Celsius. Note: Many internet browsers now require an HTTP Secure (https://) connection to obtain a user's locale via HTML5 Geolocation. For this reason, we recommend using HTML5 Geolocation to get user location and then use the freeCodeCamp Weather API https://fcc-weather-api.glitch.me which uses an HTTP Secure connection for the weather. Also, be sure to connect to CodePen.io via https://. -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook. diff --git a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/use-the-twitch-json-api.english.md b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/use-the-twitch-json-api.english.md index a6d08df389..2151c7662a 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/use-the-twitch-json-api.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/take-home-projects/use-the-twitch-json-api.english.md @@ -16,7 +16,6 @@ Fulfill the below https://dev.twitch.tv/docs/api/reference/#get-streams. Hint: Here's an array of the Twitch.tv usernames of people who regularly stream: ["ESL_SC2", "OgamingSC2", "cretetion", "freecodecamp", "storbeck", "habathcx", "RobotCaleb", "noobs2ninjas"] UPDATE: Due to a change in conditions on API usage, Twitch.tv requires an API key, but we've built a workaround. Use https://wind-bow.glitch.me/helix instead of twitch's API base URL (i.e. https://api.twitch.tv/helix ) and you'll still be able to get account information, without needing to sign up for an API key. -Remember to use Read-Search-Ask if you get stuck. When you are finished, click the "I've completed this challenge" button and include a link to your CodePen. You can get feedback on your project by sharing it with your friends on Facebook.