Added first version of helper tool
This commit is contained in:
@ -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
4
Generic/desc.yml
Normal file
@ -0,0 +1,4 @@
|
||||
title: Generic
|
||||
url: http://google.com
|
||||
|
||||
desc: Various problems that doesn't fit any catagory
|
Reference in New Issue
Block a user