It has 1 parameter, list, areference to a LinkedListNode that is the head of a linked List. You function should remove all nodes from the list having data values that are odd integers, and then reutrn the head of the modified linked list.
For example:
2 -> 1->3->4->6
return
2->4->6
Read full article from Delete Odd | Now to Share
No comments:
Post a Comment