Concept Flow - Find/detect for first match
Start with collection
Check each element
Does element match condition?
No→Next element
Yes
Return this element
End
The program checks each item in a list one by one until it finds the first item that meets the condition, then it stops and returns that item.