Just got done with the interview about 30 min ago and it actually went better than i thought it would go
Interviewer ask me to implement a user's website history with one method being add site to history and
the other one being returning a list of visited sites in order.
for the first method , i went with a linked list where i kept a tail pointer in order to keep track of the last site visited.
the second method i used both a dictionary[to avoid duplicate sites] and append it to a list since i had to return a list.