"""Data Scavenger Hunt: national collection of British art.

https://corgis-edu.github.io/corgis/csv/tate/
https://corgis-edu.github.io/corgis/json/tate/

Author: YOUR NAME
Version: THE DATE
"""

import csv
import json


# Round 1: Using the CSV file

def ex1_csv():
    """What is the oldest work of art in the collection?"""


def ex2_csv():
    """On average, how many words in are a work's title?"""


def ex3_csv():
    """Which artist has the most works of art in the data?"""


def ex4_csv():
    """How many unique artists in the data are still alive?"""


# Round 2: Using the JSON file

def ex1_json():
    """What is the oldest work of art in the collection?"""


def ex2_json():
    """On average, how many words in are a work's title?"""


def ex3_json():
    """Which artist has the most works of art in the data?"""


def ex4_json():
    """How many unique artists in the data are still alive?"""


# Test that each function works

if __name__ == "__main__":
    ex1_csv()
    ex2_csv()
    ex3_csv()
    ex4_csv()
    ex1_json()
    ex2_json()
    ex3_json()
    ex4_json()
