Sha256: 6dcea797b77dbe68d154af4c5c9e41508d63d11021f097e23def11458575b85b
Contents?: true
Size: 480 Bytes
Versions: 141
Compression:
Stored size: 480 Bytes
Contents
'use strict'; function sumElements(element, index, array) { /* jshint validthis:true */ this.push(element + (array[index + 1] || 0)); } function fillRows(rows) { var result = [[1]]; for (var x = 1; x < rows; x++) { var newRow = [1]; result[x - 1].forEach(sumElements, newRow); result.push(newRow); } return result; } function Triangle(rows) { this.rows = fillRows(rows); this.lastRow = this.rows[this.rows.length - 1]; } module.exports = Triangle;
Version data entries
141 entries across 141 versions & 1 rubygems