Q1. Singly linked list, know header node, but do not know how many nodes in a list. find out 2nd last node
Sigiloso
using two pointers which points out header node. one pointer move forward to point out 2nd node. then move two pointers forward when one pointer reach out to the last element (null pointer),