Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Problem 238 - Product of Array Except Self

Solution idea:

  • Step 1: Scan the array from left to right for calculating the product of elements in the left.
  • Step 2: Scan the array from right to left for calculating the product of elements in the right and get the final result.