Find the Index of the First Occurrence

Easy
Code
Loading editor...
Tap Analyze to see visualization
Variables

Run code to see variables

Output

Console output will appear here

Press Space to start to step? all shortcuts

Solution Guide: Find the Index of the First Occurrence

Approach

Try every possible starting index in haystack where needle could fit and compare characters sequentially.

Complexity Analysis

Time
O(n * m)
Space
O(1)

Pattern

String Scan (Brute Force)

Why It Works

Any valid match must start at one of these positions, so checking each candidate start guarantees the first occurrence is found.

Updated Feb 2026