Requested by Toph Tucker.
View .block
license: gpl-3.0 |
View .block
license: gpl-3.0 |
View .block
license: gpl-3.0 |
View .block
license: gpl-3.0 |
View .block
license: gpl-3.0 | |
height: 500 |
View README.md
Survivor with Seth III auction performance
View gcd.js
function drawGCD(){ | |
var stack = [] | |
var a = 960 - Math.floor(Math.random()*100), b = 400 + Math.floor(Math.random()*100) | |
function gcd(u, v){ | |
stack.push({u: u, v: v}) | |
return v ? gcd(v, u % v) : u | |
} |