The Runtime Theory
easyLeetCode#boyer-moore#voting

Majority Element

Return the value occurring more than half the time; the input contract guarantees one exists.

The Runtime Theory Team25 min read
Solve it

Solving happens on the judge — come back and mark it done

Sample cases

innums=[3,2,3]

out3

innums=[2,2,1,1,1,2,2]

out2

innums=[1]

out1

Return the value occurring more than half the time; the input contract guarantees one exists.

A good solution should

  • State the invariant or decision rule that makes the approach correct.
  • Explain time and space costs in terms of input size and required output.
  • Handle empty, minimal, duplicate, and boundary-shaped inputs.

Reasoning prompt

Use Boyer-Moore voting and explain the cancellation argument. If the guarantee is removed, add a verification pass.

Use the linked judge for the canonical challenge. The examples above are compact TRT checks; create additional tests around the boundary most likely to break your invariant.

More practice in this topic

One dispatch a week

The trace behind each problem, the tradeoff that explains it, and one technical dispatch per week — no noise.

One technical dispatch per week. No noise.

Not started

Sign in to save your learning progress.

Sign in to save