Public Messages
Welcome, guest! Please login or register for free to be able to join the Beautiful Code group and participate in the discussions.
-
Sissy 2013-09-24 20:15
-
Sissy 2013-09-19 17:26
STAY BEAUTIFUL!! :) <3
-
murtlest 2013-01-13 15:03
Short, brilliant, recursive function for calculating the greatest common divisor:
function gcd(a, b) { return b ? gcd(b, a % b) : a; }