Skip to content

Files

Latest commit

Jun 11, 2019
59e3ef9 · Jun 11, 2019

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 11, 2019
Jun 11, 2019

Given a list of integers, return the largest product that can be made by multiplying any three integers.

For example, if the list is [-10, -10, 5, 2], we should return 500, since that's -10 * -10 * 5.

You can assume the list has at least three integers.