you are given a single linked list 1->2->3->4->5->null.
you have to delete the node with value 3 from linked list and you are having a pointer pointing to node with value 3.
you are not given head of linked list or any other information.
what will be the bes time complexity for doing so?