-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
31 lines (24 loc) · 1.18 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
This is a collection of problem solutions for the
Google Code Jam competitions. These programming puzzles
generally fall into searching and sorting problems.
To solve a new problem, I create a copy of
codejamtemplate.erl
and modify it as appropriate. The template covers the basic I/O stuff for reading
plain text data files that code jam problems commonly use, and outputs the results
generated by the solving method in a common format.
See http://code.google.com/codejam/ for the problem sets
Complete and accurate solutions:
africa2010storecredit.erl - Qual Round 2010 Problem A
codejamalienlang.erl - Qual Round 2009 Problem A
codejamminscalar.erl - Round 1A 2008 Problem A
codejamrecycle.erl - Qual Round 2012 Problem C
codejamtongues.erl - Qual Round 2012 Problem A
codejamwelcome2.erl - Qual Round 2009 Problem C
In Progress:
codejamrush.erl - Round 1A 2012 Problem B
Close but not quite perfect solution. Need to sort levels before picking.
Retired:
codejamwelcome.erl - Qual Round 2009 Problem C
Horribly slow recursive solution, accurate for the sample but
doesn't complete in reasonable time on small-practice. Scrapped and re-written
as codejamwelcome2