I am required to create a function that returns a list of all instances of single characters in 'text' that immediately follow 'last'. For example...
def follow_char(text,last):
"""
>>> follow_char('as we consider the operations', 'co')
"""
I think I am required to solve this using linked lists but am not sure how to do this, any help will be greatly appreciated, cheers =)