day%d/
    | small_input.txt
    | input.txt
    | first_half.[py|c|hs]
    | second_half.[py|c|hs]
Each folder contain both inputs and problems of the day.
Example input is localed in small_input.txt, and the actual input of the problem is localted in input.txt.
The programming language used in each day is decided by my mood.
- Python (day 1, 3, 5, 7, 8, 9, 10)
- Haskell (day 2, 6)
- C (day 4)
Python3 (require python 3 interpreter)
python file-name.pyC (require gcc for compilation)
gcc file-name.c -o file_name
./file_nameHaskell (require ghc for complication)
ghc file-name.hs
./file-name