Skip to content

Instantly share code, notes, and snippets.

View ready4god2513's full-sized avatar

Brandon Hansen ready4god2513

View GitHub Profile
# Given an array_of_ints, find the highest_product you can get from three of the integers.
# The input array_of_ints will always have at least three integers.
def highest_product(arr)
highest = arr[0]
lowest = arr[0]
# This just set the absolute baseline to work with.
# Grab the first (n) elements and multiply them. Then as we walk through continue to look for
# higher numbers