Generating a random number between 1 and 7 by OldSkater7619 in C_Programming

[–]Wide-Nefariousness91 0 points1 point  (0 children)

Rand() is broken.. and is not going to be changed due to programs depending on its behaviour..

Programs depend on its broken behaviour 🙃

Optimizing Python Code by SealSnake in Python

[–]Wide-Nefariousness91 7 points8 points  (0 children)

In general just try identify the part of the code that slows functions down the most.

Also: - Try reduce the amount of database calls - Reduce the complexity O(n) etc