Answer from cs61c-av (Kenneth Wong 16192104) for Question 1
struct ListNode {
    string str;
    struct ListNode *next;
};
