What Did I Learn? In this challenge I learned: use map to separate the date string into integers when encountering a '-' y, m, d = map(int, date.split('-')) Transform into binary by removing the '0b' that Python puts at the beginning ybin = bin(y)[2:]