We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e86c2ee commit c080eceCopy full SHA for c080ece
1 file changed
Week2/prep-exercises/2-experiments/index.js
@@ -47,11 +47,9 @@ function main() {
47
const sampleSizes = [100, 1000, 1000000];
48
49
for (let sizeElement of sampleSizes) {
50
- console.log(`[${runExperiment(sizeElement)}] ${sizeElement}`);
+ console.log(runExperiment(sizeElement), sizeElement);
51
}
52
53
-
54
55
// TODO
56
// Write a for..of loop that calls the `runExperiment()` function for each
57
// value of the `sampleSizes` array.
0 commit comments