Skip to content

Commit 51d0b35

Browse files
authored
Update 0152-Maximum-Product-Subarray.md
1 parent 828560e commit 51d0b35

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dsa-solutions/lc-solutions/0100-0199/0152-Maximum-Product-Subarray.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Explanation: The result cannot be 2, because [-2,-1] is not a subarray.
4040

4141
- $1 <= nums.length <= 2 * 10**4$
4242
- $10 <= nums[i] <= 10$
43-
- $The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.$
43+
- The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.
4444

4545

4646
#### Code in Different Languages
@@ -148,9 +148,7 @@ public:
148148
</Tabs>
149149

150150

151-
</TabItem>
152151

153-
</Tabs>
154152

155153
## References
156154

0 commit comments

Comments
 (0)