Removes the first occurence of an element from the list in linear time.
value of the node to be removed
Complexity: O(n)
True if the element existed and was successfully removed, false otherwise.
See Implementation
Removes the first occurence of an element from the list in linear time.