Skip to content

Instantly share code, notes, and snippets.

@mikedao
Created January 4, 2016 20:41
Show Gist options
  • Save mikedao/4a2d601f75921951b60e to your computer and use it in GitHub Desktop.
Save mikedao/4a2d601f75921951b60e to your computer and use it in GitHub Desktop.
You have an array of integers, and for each index you want to find the product of every integer except the integer at that index.
Write a function get_products_of_all_ints_except_at_index() that takes an array of integers and returns an array of the products.
For example, given:
[1, 7, 3, 4]
your function would return:
[84, 12, 28, 21]
by calculating:
[7*3*4, 1*3*4, 1*7*4, 1*7*3]
Do not use division in your solution.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment