Remove example code from challenge seed (#39083)

Co-authored-by: Parth Parth <34807532+thecodingaviator@users.noreply.github.com>
This commit is contained in:
Nicholas Carrigan
2020-06-22 03:43:21 -07:00
committed by GitHub
parent 5a80b83579
commit 2aee480c46

View File

@ -29,12 +29,12 @@ Use this technique to generate and return a random whole number between <code>0<
tests:
- text: The result of <code>randomWholeNum</code> should be a whole number.
testString: assert(typeof randomWholeNum() === "number" && (function(){var r = randomWholeNum();return Math.floor(r) === r;})());
- text: You should be using <code>Math.random</code> to generate a random number.
testString: assert(code.match(/Math.random/g).length > 1);
- text: You should use <code>Math.random</code> to generate a random number.
testString: assert(code.match(/Math.random/g).length >= 1);
- text: You should have multiplied the result of <code>Math.random</code> by 10 to make it a number that is between zero and nine.
testString: assert(code.match(/\s*?Math.random\s*?\(\s*?\)\s*?\*\s*?10[\D]\s*?/g) || code.match(/\s*?10\s*?\*\s*?Math.random\s*?\(\s*?\)\s*?/g));
- text: You should use <code>Math.floor</code> to remove the decimal part of the number.
testString: assert(code.match(/Math.floor/g).length > 1);
testString: assert(code.match(/Math.floor/g).length >= 1);
```
@ -46,8 +46,6 @@ tests:
<div id='js-seed'>
```js
var randomNumberBetween0and19 = Math.floor(Math.random() * 20);
function randomWholeNum() {
// Only change code below this line
@ -75,7 +73,6 @@ function randomWholeNum() {
```js
var randomNumberBetween0and19 = Math.floor(Math.random() * 20);
function randomWholeNum() {
return Math.floor(Math.random() * 10);
}