Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Every solution in Clear category for All the Same by zoezed
import assert from "assert";
var allTheSame = (elements: any[]): boolean => elements.every(x => x === elements[0])
console.log('Example:')
console.log(allTheSame([1, 1, 1]))
// These "asserts" are used for self-checking and not for an auto-testing
assert.equal(allTheSame([1, 1, 1]), true)
assert.equal(allTheSame([1, 2, 1]), false)
assert.equal(allTheSame(['a', 'a', 'a']), true)
assert.equal(allTheSame([]), true)
assert.equal(allTheSame([1]), true)
console.log("Coding complete? Click 'Check' to earn cool rewards!");
June 16, 2020
Comments: