Skip to content

Instantly share code, notes, and snippets.

View CSMastermind's full-sized avatar

Chris Seltzer CSMastermind

View GitHub Profile
@CSMastermind
CSMastermind / keybase.md
Created March 6, 2014 05:08
Keybase Verification

Keybase proof

I hereby claim:

  • I am csmastermind on github.
  • I am csmastermind (https://keybase.io/csmastermind) on keybase.
  • I have a public key whose fingerprint is 45DE 90A6 7A49 55ED 31DD B866 BA5A 5406 AFA0 EADC

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am CSMastermind on github.
  • I am csmastermind (https://keybase.io/csmastermind) on keybase.
  • I have a public key whose fingerprint is F316 A0E8 8B06 C5D3 36D3 B9C9 FA91 0BC0 70F4 A865

To claim this, I am signing this object:

@CSMastermind
CSMastermind / findwords.js
Created November 26, 2023 20:32
Full Deletable Word Finder
const fs = require('fs');
const wordListPath = require('word-list');
const wordArray = fs.readFileSync(wordListPath, 'utf8').split('\n');
const wordSet = new Set(wordArray);
function findFullyDeletableWords(words) {
const fullyDeletableWords = new Set();
words.forEach(word => {