1
2
assert(get_first_price("GOOG", 1980) == None)
3
4
assert(get_first_price("GOOG", 2010) == Some(311.349976))
5
6
7
8