Skip to content

seungwonpark/ProjectEuler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProjectEuler

My solution to ProjectEuler

I think it is good way to learn new language!

  • Languages : C++, Python, TeX, PHP, Javascript

Basic Instructions for Novices

Editor

I recommend Notepad++

Compiling C++

  • Install MinGW
  • Add MinGW to path. Instruction
  • Go to directory where source file exists. Same for all languages.
  • g++ -Wall xxx.cpp -o xxx will create xxx.exe
  • xxx

Interpreting Python

  • Install python. Don't forget to add python to path, too!
  • python xxx.py

Compiling TeX

  • Download latest TeXlive via torrent Guide in Korean
  • To install TeXlive, unzip the iso file and execute install-tl-windows.bat
  • pdflatex xxx.tex

Interpreting PHP (locally)

  • Install MAMP
  • Execute MAMP
  • Preferences - Web Server - Document root (Select)
  • Go to localhost:xx/xxx.php at your web browser

Interpreting Javascript (locally)