From 7f9cbe982bce11b19e439d0bf41646c49c37230d Mon Sep 17 00:00:00 2001 From: Casey Bennington Date: Fri, 25 Jan 2019 16:10:44 +0000 Subject: [PATCH] Add the solution (#28899) * Add the solution * Update divide-one-decimal-by-another-with-javascript.english.md The solution was not passing. Change should pass now. * Update divide-one-decimal-by-another-with-javascript.english.md Co-authored-by: Paul Gamble --- .../divide-one-decimal-by-another-with-javascript.english.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/divide-one-decimal-by-another-with-javascript.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/divide-one-decimal-by-another-with-javascript.english.md index 7d86d31cde..10a7bcb561 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/divide-one-decimal-by-another-with-javascript.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/divide-one-decimal-by-another-with-javascript.english.md @@ -37,8 +37,6 @@ tests: ```js var quotient = 0.0 / 2.0; // Fix this line - - ``` @@ -59,6 +57,6 @@ var quotient = 0.0 / 2.0; // Fix this line
```js -// solution required +var quotient = 4.4 / 2.0; ```