Skip to content

Instantly share code, notes, and snippets.

View chrisryan's full-sized avatar

Chris Ryan chrisryan

  • Trader Interactive
  • Norfolk, Virginia
View GitHub Profile
@chrisryan
chrisryan / seeAndSay50.js
Created September 18, 2022 20:39
Solution to See And Say - 50 Challenge
'use strict';
const debug = true;
const start = process.hrtime();
let seq = '1';
let results = [seq];
const runto = 50;
while (results.length < runto) {