Added first version of helper tool

This commit is contained in:
FuryFire
2012-03-15 13:12:02 +01:00
parent 823b0a332a
commit e99ce2c532
10 changed files with 92 additions and 12 deletions

View File

@ -1,20 +1,17 @@
title: FizzBuzz
url: http://projecteuler.net/problem=1
desc: |
The classical coding challenge. Write a program that prints the numbers from 1 to 100. But for multiples of three print <20>Fizz<7A> instead of the number and for the multiples of five print <20>Buzz<7A>. For numbers which are multiples of both three and five print <20>FizzBuzz<7A>.
desc: The classical coding challenge. Write a program that prints the numbers from 1 to 100. But for multiples of three print Fizz instead of the number and for the multiples of five print Buzz. For numbers which are multiples of both three and five print FizzBuzz.
solution: |
See the code...
solution: See the code...
solutions:
solve.php:
desc: Basic solution
usage:
language: php
solve.rb:
desc: Basic solution in Ruby
language: ruby
solve.c:
desc: ANSI C solution (Tested with TCC)
language: c
language: c

4
Generic/desc.yml Normal file
View File

@ -0,0 +1,4 @@
title: Generic
url: http://google.com
desc: Various problems that doesn't fit any catagory