#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1205
Task: \boxed{Write a Python function that takes a list of episode titles and returns a dictionary mapping each title to the number of times it appears in the list, using the given memory recall data as inpu
Generated: 2026-02-13T00:02:46.055731
"""

def count_episode_titles(episode_titles):
    title_counts = {}
    for title in episode_titles:
        if title in title_counts:
            title_counts[title] += 1
        else:
            title_counts[title] = 1
    return title_counts

if __name__ == '__main__':
    example_data = ["The Pilot", "The Pilot", "The Cold Open", "The Cold Open", "The Cold Open"]
    result = count_episode_titles(example_data)
    print(result)