Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiliankoe/projecteuler
:heavy_division_sign: solutions for projecteuler problems
https://github.com/kiliankoe/projecteuler
Last synced: 25 days ago
JSON representation
:heavy_division_sign: solutions for projecteuler problems
- Host: GitHub
- URL: https://github.com/kiliankoe/projecteuler
- Owner: kiliankoe
- Created: 2014-08-23T20:32:09.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-27T16:15:41.000Z (over 8 years ago)
- Last Synced: 2024-06-11T23:17:12.077Z (5 months ago)
- Language: C
- Homepage: projecteuler.net
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Project Euler
![](https://projecteuler.net/profile/kiliankoe.png)
These are my solutions for the problems from [Project Euler](http://projecteuler.net/). Judge me on the implementations if you feel like it, but please regard the timestamp of the commit. I probably won't fix old or definitely non-idiomatic code. I usually touch these problems to get familiar with a language or its specific features (or in the case of C, programming in general).
There's also a few similar problems on [4Clojure](http://www.4clojure.com/user/kiliankoe) specifically for... well... Clojure.
For something very similar, check out [Exercism](http://exercism.io). I also threw my solutions from there into a repo [here](https://github.com/kiliankoe/exercism).
### C
Should compile with probably any C compiler out there and the most standard flags and whatnot. Simple stuff.
This is also old and stupid code.### Swift
Just throw it into a playground or compile it directly, whatever you prefer.
Compile and run with `swift file.swift`.
These files will probably contain outdated Swift syntax, so forgive me if it doesn't run with the most current version of the swift runtime/compiler.
### Clojure
If you're an experienced functional programmer, please be easy on my code. I've never *really* done purely functional stuff before this.
Code should be able to execute with `lein exec file.clj`. The [exec plugin](https://github.com/kumarshantanu/lein-exec) for leiningen is needed though.
### Crystal
Compile and run with `crystal file.cr`.