Sha256: ccdd392d87c6cdecc62fc5e6cd3d63f8a5ac78049cc30517a692f98a002df225

Contents?: true

Size: 864 Bytes

Versions: 116

Compression:

Stored size: 864 Bytes

Contents

var BigInt = require('./big-integer');

/**
 * @author github.com/nonsensery
 * @class Grains
 *
 * @classdesc Computes the number of grains on the squares of a
 * chess board, starting with one grain on the first
 * square, and doubling with each successive square.
 */
function Grains() {
  // no op!
}

/**
 * Gets the number of grains on the nth square.
 * @param {number} num - the value to square
 * @return {number} the square of num
 */
Grains.prototype.square = function (num) {
  return new BigInt(2).pow(num - 1).toString();
};

/**
 * Gets the total number of grains on all squares.
 * @return {string} the total
 */
Grains.prototype.total = function () {
  var total = new BigInt(0);

  for (var squareNum = 1; squareNum <= 64; ++squareNum) {
    total = total.add(this.square(squareNum));
  }

  return total.toString();
};

module.exports = Grains;

Version data entries

116 entries across 116 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.138 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.137 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.136 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.135 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.134 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.133 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.132 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.131 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.130 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.129 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.128 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.127 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.126 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.125 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.124 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.123 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.122 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.121 tracks/javascript/exercises/grains/example.js
trackler-2.2.1.120 tracks/javascript/exercises/grains/example.js