-
-
Notifications
You must be signed in to change notification settings - Fork 155
Create 0152-Maximum-Product-Subarray.md #758
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create 0152-Maximum-Product-Subarray.md #758
Conversation
|
Here's the code health analysis summary for commits Analysis Summary
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
now update your code based on suggestions
|
||
- $1 <= nums.length <= 2 * 10**4$ | ||
- $10 <= nums[i] <= 10$ | ||
- $The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.$ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace $The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.$
to The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.
|
@ajay-dhangar The code has been modified |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
@mahek0620, to calculate the score for your leaderboard, you'll need to add something to those files and then try it out at the bottom. Below is the code you need to include for your author profile in the documentation: ---
<h2>Authors:</h2>
<div style={{display: 'flex', flexWrap: 'wrap', justifyContent: 'space-between', gap: '10px'}}>
{['github_username'].map(username => (
<Author key={username} username={username} />
))}
</div> |
Related Issue
Closes #699
Description
[Please include a brief description of the changes or features added]
Type of PR
Checklist