Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All the Same by suic
function allTheSame(elements: any[]): boolean {
return (new Set(elements)).size < 2;
}
Aug. 9, 2020
Comments: