Skip to content

mitkoradev/contest

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

contest

Because we all have a lot of free time ;)

Guidelines

Each solution should provide a Makefile with three targets:

  • build (that should be the default target): prepares your solution to be run
  • run: runs your solution
  • clean: cleans up your directory

Example

compile:
        gcc -o solution solution.c

run:
        @./solution
        
clean:
        -rm solution

.PHONY: run
.PHONY: clean

check_output.coffee

Checks to see if a solution output file is correct or not. Requires installed phantomjs.

Example

$ (cd 2014/45/abozhilov && make)
$ ./2014/45/abozhilov/alien_numbers < ./2014/45/A-small-practice.in > /tmp/output
$ ./check_output.coffee https://code.google.com/codejam/contest/32003/dashboard /tmp/output
Judged response for input A-small: Correct!

Recent

w45: 39 November 2014: https://code.google.com/codejam/contest/32003/dashboard [A]
w46: 10
16 November 2014: https://code.google.com/codejam/contest/32003/dashboard#s=p1 [B]

About

Because we all have a lot of free time ;)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 23.2%
  • C# 18.1%
  • C 14.5%
  • Java 13.2%
  • CoffeeScript 12.0%
  • C++ 10.8%
  • Other 8.2%