mirror of
https://github.com/jlengrand/project_euler.git
synced 2026-03-10 08:41:20 +00:00
8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Used to easily profile a solution to Project Euler
|
|
|
|
PROBLEM=$1
|
|
|
|
python -m cProfile -s time $PROBLEM
|