Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 375 Bytes

ProductOfThree.md

File metadata and controls

17 lines (11 loc) · 375 Bytes

ProductOfThree

Difficulty Tags Solution Link
Medium [Arrays, Products, Integers] To Do

Problem Description

Given an array of at least three integers, return the largest product you can get by multiplying three numbers together.

Samples

Input Output
[3, 5, 1, 2, 8] 120
-10, -4, 2, 3, 5 200