All Questions
3 questions
6
votes
1
answer
371
views
Speed of Python vs Julia for Game of Life. Why is Julia slow?
To compare the speed of Julia to Python+numba, I implemented Game of Life in both languages.
For anyone who is not familiar with ...
3
votes
0
answers
742
views
Parsing simple log files in Julia vs Python
I wrote a log parser in Python and Julia. The Python version takes about 8 seconds to process 350 files, while the Julia version takes about 8 seconds to compile, after which it takes over 20 seconds ...
6
votes
2
answers
751
views
Julia RPN calculator algorithm ported from Python version
I've just finished the Reverse Polish Notation task in Julia from rosettacode.com by porting the existing Python code.
There are only a few lines I don't get how to port:
...