Challenge 3: Deletion by Value
Based on how you handled the deletion at head strategy, write the function for deletion by value.
We'll cover the following...
Problem statement
Implement the Delete functionality. In this function, you will pass a particular value that you want to delete from the list. The node containing this value could be anywhere on the list. It ...