Skip to content

Instantly share code, notes, and snippets.

View tanyapowell's full-sized avatar
✌️

Tanya Powell tanyapowell

✌️
View GitHub Profile
@tanyapowell
tanyapowell / breakingTheRecord.js
Created October 20, 2022 20:55
Hackerrank solution for Thomas cohort
'use strict';
const fs = require('fs');
process.stdin.resume();
process.stdin.setEncoding('utf-8');
let inputString = '';
let currentLine = 0;
@tanyapowell
tanyapowell / birthdayCakeCandles.js
Created October 13, 2022 20:08
Hackerrank solution from Thomas Cohort
'use strict';
const fs = require('fs');
process.stdin.resume();
process.stdin.setEncoding('utf-8');
let inputString = '';
let currentLine = 0;