mirror of https://github.com/coolaj86/fizzbuzz.git
Yay for FizzBuzz!
This commit is contained in:
commit
d51959eda0
|
@ -0,0 +1,9 @@
|
||||||
|
FizzBuzz
|
||||||
|
========
|
||||||
|
|
||||||
|
An array of the usual suspects - Hello World, FizzBuzz, Fibonacci, more to come...
|
||||||
|
|
||||||
|
TODO
|
||||||
|
----
|
||||||
|
* Echo Client / Server
|
||||||
|
* Ajax Chat
|
|
@ -0,0 +1,16 @@
|
||||||
|
#!/usr/bin/env node
|
||||||
|
"use strict";
|
||||||
|
var sys = require('sys');
|
||||||
|
(function () {
|
||||||
|
var seq = [];
|
||||||
|
function fibonacci(a, b) {
|
||||||
|
seq.push(a);
|
||||||
|
if (a >= 100) {
|
||||||
|
seq.push(b);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
fibonacci(b, a+b);
|
||||||
|
}
|
||||||
|
fibonacci(0,1);
|
||||||
|
sys.print(seq.join(', ') + "\n");
|
||||||
|
}());
|
|
@ -0,0 +1,21 @@
|
||||||
|
#!/usr/bin/env node
|
||||||
|
"use strict";
|
||||||
|
var sys = require('sys');
|
||||||
|
(function () {
|
||||||
|
var i, n;
|
||||||
|
for (i = 1; i <= 100; i += 1) {
|
||||||
|
n = false;
|
||||||
|
|
||||||
|
if (0 === (i % 3)) {
|
||||||
|
n = true;
|
||||||
|
sys.print("Fizz");
|
||||||
|
}
|
||||||
|
if (0 === (i % 5)) {
|
||||||
|
n = true;
|
||||||
|
sys.print("Buzz");
|
||||||
|
}
|
||||||
|
if (true === n) {
|
||||||
|
sys.print("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}());
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
(1..100).each do |x|
|
||||||
|
print "Fizz" if 0 == (x % 3)
|
||||||
|
print "Buzz" if 0 == (x % 5)
|
||||||
|
print "\n" if 0 == (x % 3) || 0 == (x % 5)
|
||||||
|
end
|
Loading…
Reference in New Issue