Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 419 Bytes

ProductOfAllExeptIndex.md

File metadata and controls

16 lines (10 loc) · 419 Bytes

ProductOfAllExeptIndex

Difficulty Tags Solution Link
Easy [Arrays, Products] To Do

Problem Description

Write a function that takes an array of integers and returns an array where each index is the product of the input array not including that index. Do not use division in your solution.

Sample

Input Output
[1, 7, 3, 4] [84, 12, 28, 21]