Starting with this chapter, we're going to focus on how we can store and organize data in a way that allows for even better algorithms.
Data structures are just organizational tools that allow for more advanced algorithms. Some examples:
Implement the count_marketers function. It should accept a list of strings (job titles) and return the number of users who've set their title to "marketer". LockedIn users sometimes use different casing in their titles, so make sure to account for that.
count = count_marketers(['programmer', 'marketer', 'doctor', 'marketer'])
print(count)
# prints "2"
The .lower() method can be used to convert a string to lowercase.