Challenge 5: Find the Maximum Product of Two Integers in a List
Let's write a function to find the maximum product of two integers in a list.
Problem statement
Implement a function find_max_prod(lst)
that takes a list of numbers and returns a maximum product ...