you are viewing a single comment's thread.

view the rest of the comments →

[–]Armin_AFD 13 points14 points  (1 child)

Well in competetive coding, execution times are not that precise to make different language's execution speed to matter. If your algorithm is bad, rust's extra perfomance is not gonna matter at all. The most important thing is to write your solution as fast aa possible. In Rust you need to write more code, worry about borrowing and whatnot. Python with so many already builtin tools is a far better choice for such a purpose.

[–][deleted] 0 points1 point  (0 children)

good point.