-
Notifications
You must be signed in to change notification settings - Fork 0
CAT 009
unurgunite edited this page Jul 11, 2026
·
3 revisions
Severity:
info| Confidence:medium| Auto-fix: ❌
group_by for counters — Using group_by + map to count elements allocates many arrays. Use Hash with default value or tally.
ary.group_by { |x| x }.map { |k, v| [k, v.size] }Note
See bench results at bench/cat-009/