From 27262eb9f78b2fe49c3352483bd7e73e7822a74f Mon Sep 17 00:00:00 2001 From: Prateek Goel Date: Thu, 20 Jul 2017 16:37:36 +0100 Subject: [PATCH 1/3] Move Fahrenheit Variable Below Comment Line Challenge URL: https://www.freecodecamp.org/challenges/convert-celsius-to-fahrenheit --- .../basic-algorithm-scripting.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json b/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json index f57754ab31..da1e3e1d70 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json +++ b/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json @@ -104,7 +104,7 @@ "title": "Convert Celsius to Fahrenheit", "description": [ "The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32.", - "You are given a variable celsius representing a temperature in Celsius. Use the variable fahrenheit already defined and apply the algorithm to assign it the corresponding temperature in Fahrenheit." + "You are given a variable celsius representing a temperature in Celsius. Use the variable fahrenheit already defined and assign it the Fahrenheit temperature equivalent to the given Celsius temperature. Use the algorithm mentioned above to help convert the Celsius temperature to Fahrenheit." ], "releasedOn": "January 1, 2016", "challengeSeed": [ From 380491784e0e12f2364b3015e3cc3f39168ee629 Mon Sep 17 00:00:00 2001 From: Prateek Date: Tue, 1 Aug 2017 01:30:24 +0530 Subject: [PATCH 2/3] Changes post review --- .../basic-algorithm-scripting.json | 1 + 1 file changed, 1 insertion(+) diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json b/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json index da1e3e1d70..183a0822d1 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json +++ b/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json @@ -105,6 +105,7 @@ "description": [ "The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32.", "You are given a variable celsius representing a temperature in Celsius. Use the variable fahrenheit already defined and assign it the Fahrenheit temperature equivalent to the given Celsius temperature. Use the algorithm mentioned above to help convert the Celsius temperature to Fahrenheit." + "Don't worry too much about the function and return statements as they will be covered in future challenges. For now, only use operators that you have already learned." ], "releasedOn": "January 1, 2016", "challengeSeed": [ From c06fd79f873375dd39b1d336d1a4a5232283a6ce Mon Sep 17 00:00:00 2001 From: Prateek Date: Tue, 1 Aug 2017 01:31:51 +0530 Subject: [PATCH 3/3] Changes post review again --- .../basic-algorithm-scripting.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json b/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json index 183a0822d1..9655657ca8 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json +++ b/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json @@ -104,7 +104,7 @@ "title": "Convert Celsius to Fahrenheit", "description": [ "The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32.", - "You are given a variable celsius representing a temperature in Celsius. Use the variable fahrenheit already defined and assign it the Fahrenheit temperature equivalent to the given Celsius temperature. Use the algorithm mentioned above to help convert the Celsius temperature to Fahrenheit." + "You are given a variable celsius representing a temperature in Celsius. Use the variable fahrenheit already defined and assign it the Fahrenheit temperature equivalent to the given Celsius temperature. Use the algorithm mentioned above to help convert the Celsius temperature to Fahrenheit.", "Don't worry too much about the function and return statements as they will be covered in future challenges. For now, only use operators that you have already learned." ], "releasedOn": "January 1, 2016",