View FizzBuzz.ts
/** | |
* Represents the result of a round of FizzBuzz. | |
* @typedef {string | number} FizzBuzzResult | |
*/ | |
type FizzBuzzResult = string | number; | |
/** | |
* Defines the function signature for a rule. | |
* @typedef {(n: number) => string} Rule |
View dice.js
var Dice = { | |
B: [0, 0, 0, 0, 1, 1], | |
A: [0, 0, 0, 0, 1, 1, 1, 2], | |
P: [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2], | |
S: [0, 0, 0, 0, -1, -1], | |
D: [0, 0, 0, 0, 0, -1, -1, -2], | |
C: [0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -2, -2] | |
}; |
View LICENSE.txt
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2015 Alexei Barnes <alexeibarnes.com> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
View LICENSE.txt
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2015 Alexei Barnes <http://alexeibarnes.com> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
View LICENSE.txt
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2015 Alexei Barnes <http://alexeibarnes.com> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |