comrak icon indicating copy to clipboard operation
comrak copied to clipboard

O(n^2) for parsing <><><><><>...

Open mity opened this issue 5 years ago • 0 comments

$ time python -c 'print("<>" * 10000)' | ./target/release/comrak >/dev/null
real    0m0.394s
user    0m0.392s
sys     0m0.002s

$ time python -c 'print("<>" * 20000)' | ./target/release/comrak >/dev/null
real    0m1.549s
user    0m1.547s
sys     0m0.003s

$ time python -c 'print("<>" * 40000)' | ./target/release/comrak >/dev/null
real    0m6.184s
user    0m6.180s
sys     0m0.004s

mity avatar May 20 '19 15:05 mity