Skip to content
This repository has been archived by the owner on Feb 23, 2021. It is now read-only.

Latest commit

 

History

History
30 lines (20 loc) · 938 Bytes

README.markdown

File metadata and controls

30 lines (20 loc) · 938 Bytes

My attempts at solving the problems at Project Euler. I’m thinking of solving each problem in multiple languages.

Running the solutions

I’m trying to solve the problems in multiple languages. For Python files, just run the script file from your shell, or pass it to the Python interpreter.

Example: $ ./1.py or $ python 1.py

Use a similar approach for Ruby solutions you come across.

I’m using SBCL for running Lisp. Emacs wizards will want to use SLIME, and other mortals can run the files using something similar to:

$ sbcl
* (load "1.lisp") ;; should load the file into memory
* (exercise-1) ;; call the appropriate function (if I forgot to put this line into the script)
* (quit) ;; to exit the SBCL prompt
$ 

Ankit Solanki http://simulacra.in