Skip to content

CAT 004

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-004 — Array#include? in loop → Set

Field Value
Severity warning
Confidence high
Auto-fix

Array#include? in loop → Set — Using Array#includes? inside a loop is O(n) per check. Use a Set for O(1) lookups.

Bad code

large_array.each do |x|
  if other_array.includes?(x)
    ...
  end
end

Clone this wiki locally