Difficulty | Tags | Solution Link |
---|---|---|
Medium | [Arrays, Products, Integers] | To Do |
Given an array of at least three integers, return the largest product you can get by multiplying three numbers together.
Input | Output |
---|---|
[3, 5, 1, 2, 8] | 120 |
-10, -4, 2, 3, 5 | 200 |