From 25e83d6d7380cd05bdf4d5a7fbe214e598b083bd Mon Sep 17 00:00:00 2001 From: Amit S Sahu Date: Tue, 22 Oct 2024 14:51:01 +0530 Subject: [PATCH] Create README - LeetHub --- 0238-product-of-array-except-self/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0238-product-of-array-except-self/README.md b/0238-product-of-array-except-self/README.md index 699ca8d..a6d83fe 100644 --- a/0238-product-of-array-except-self/README.md +++ b/0238-product-of-array-except-self/README.md @@ -1,4 +1,4 @@ -

238. Product of Array Except Self

Medium


Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i].

+

238. Product of Array Except Self

Medium


Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i].

The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.