Skip to content

CAT 043

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-043 — Random.new reuse

Field Value
Severity info
Confidence medium
Auto-fix

Random.new reuse — Creating a new Random.new each call is wasteful. Create once and reuse.

Bad code

3.times { Random.new.rand(10) }

Clone this wiki locally