cscg24-guacamole
CSCG 2024 Challenge 'Guacamole Mashup'
git clone
https://git.sinitax.com/sinitax/cscg24-guacamole
Log
|
Files
|
Refs
|
sfeed.txt
mod.js (68B)
1
export default function mod(n, x) {
2
return ((n % x) + x) % x;
3
}