diff --git a/challenges/08-coding-interview-questions-and-take-home-assignments/coding-interview-data-structure-questions.json b/challenges/08-coding-interview-questions-and-take-home-assignments/coding-interview-data-structure-questions.json index 0e3d93ec33..eb22918c63 100644 --- a/challenges/08-coding-interview-questions-and-take-home-assignments/coding-interview-data-structure-questions.json +++ b/challenges/08-coding-interview-questions-and-take-home-assignments/coding-interview-data-structure-questions.json @@ -23,7 +23,7 @@ "
i8View[0] = 42;", "Note
console.log(i8View); // Returns [42, 0, 0]
.pop()
or .push()
. Typed arrays also fail Array.isArray()
that checks if something is an array. Although simpler, this can be an advantage for less-sophisticated JavaScript engines to implement them.",
"buffer
that is 64-bytes. Then create a Int32Array
typed array with a view of it called int32View
."
+ "First create a buffer
that is 64-bytes. Then create a Int32Array
typed array with a view of it called i32View
."
],
"challengeSeed": [
"var buffer;",