https://github.com/grz0zrg/projecteuler
Solutions to problems at http://projecteuler.net in various languages
https://github.com/grz0zrg/projecteuler
Last synced: 3 months ago
JSON representation
Solutions to problems at http://projecteuler.net in various languages
- Host: GitHub
- URL: https://github.com/grz0zrg/projecteuler
- Owner: grz0zrg
- Created: 2015-06-13T00:37:16.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-01T15:21:59.000Z (about 8 years ago)
- Last Synced: 2025-01-29T12:28:36.518Z (5 months ago)
- Language: Java
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Solutions to problems at [projecteuler.net](http://projecteuler.net) ###
Done for fun and to benchmark the [Anubis programming language](http://fr.wikipedia.org/wiki/Anubis_%28langage%29) against other programming languages
>Result of a benchmark run for the first problem on a "x64 Ubuntu™ Intel® Q6600® quad-core" machine, each programs are executed 10000 times
| language | average time (ms) |
|:----------: |:-----------------: |
| Haskell | 3 |
| Anubis | 9 |
| Python | 30 |
| JavaScript | 61 |
| Java | 118 |#### Note: ####
Java benchmark is useless because the time shown is taking into account the Virtual Machine initialization which is known to be slow and the Javascript benchmark may as well have the same flaw due to the way the benchmarking process is done... also the JavaScript/Java solution don't use big integer thus the result is potentially slower in reality for these programming languages, this benchmark is not exactly representative of the performance of each programming language but can give a hint.