Concept Flow - Tuple methods
Start with a tuple
Call method: count(value)
Count how many times value appears
Return count
Call method: index(value)
Find first position of value
Return index
End
This flow shows how tuple methods count() and index() work by taking a value, processing the tuple, and returning a result.