show/hide this revision's text 3 I'm an idiot

Hugh Jackman cracked the NSA database in 60 seconds with a gun to his head and a girl in his lap....so yeah, 5 minutes for FizzBuzz (max).

By the way, javascript 48 seconds (no code golf):

for(var i = 1; i <= 100; i++){
  var output = i + ": ";
  if(i % 3 == 0) output += "fizz";
  if(i % 5 == 0) output += "buzz";
  console.log(output);
}

Oops.

Didn't read the spec, I was wondering what people were complaining about. Ok, 2 hours later (guess I didn't get the job)

for(var i = 1; i <= 100; i++){
    var o = (i % 3 + i % 5 < 1 ) ? "fizzbuzz" : !(i % 3) ? "fizz" : !(i % 5) ? "buzz" : null;
    console.log(!(o) ? i : o);
}
show/hide this revision's text 2 Solved

Hugh Jackman cracked the NSA database in 60 seconds with a gun to his head and a girl in his lap....so yeah, 5 minutes for FizzBuzz (max).

By the way, javascript 48 seconds (no code golf):

for(var i = 1; i <= 100; i++){
  var output = i + ": ";
  if(i % 3 == 0) output += "fizz";
  if(i % 5 == 0) output += "buzz";
  console.log(output);
}
show/hide this revision's text 1

Hugh Jackman cracked the NSA database in 60 seconds with a gun to his head and a girl in his lap....so yeah, 5 minutes for FizzBuzz (max).