Skip to content

dgoldstein1/projectEuler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project Euler Problems

website : https://projecteuler.net. Going to try for 25 for starters.

Dependencies

Running the problems

To run a problem, simply cd into a problem directory and run make. This will build, run, and clean the direcory. The answer will be outputted to the console.

Development

To start working on a new problem, I've created a template script. For example, to create a directory for the problem 8, run

./createFolderFromTemplate.sh 8
ls 8
makefile  problem_8.c  problem_8.txt

to create a new directory with template code in it. You can also bulk create templated folders by running

for i in {start..end}; do
	./createFolderFromTemplate.sh ${i};	
done

GCC version used: Ubuntu 4.8.5-2ubuntu1~14.04.1.

Authors

Author : David Goldstein