most_frequent_value(items) that returns the value appearing most often in items without using a dictionary or <code>collections.Counter</code> — use two parallel plain lists (one for unique values seen, one for their counts) to track frequencies. If there is a tie, return whichever tied value appears first in items. Assume items is non-empty.items = ['x', 'y', 'x', 'z', 'x', 'y']
'x'
'x' appears 3 times, more than any other value.
Keep a values list and a matching counts list at the same indices.
For each item, find it in values (or add it) and bump the matching counts entry.