-
-
Notifications
You must be signed in to change notification settings - Fork 245
[Week 4] Add KyrieJ95's solution for 3 / 5 problems #437
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f886424
Valid-palindrome solution
KyrieJ95 34fc9da
Add missing-number solution
KyrieJ95 b02425a
Merge pull request #2 from KyrieJ95/week4
KyrieJ95 e2b43bd
Add maximum-product-subarray solution
KyrieJ95 5960de9
Merge pull request #3 from KyrieJ95/week4
KyrieJ95 6a7eccf
Errata
KyrieJ95 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
from typing import List | ||
|
||
|
||
class Solution: | ||
# Time: O(n) | ||
# Space: O(n) | ||
def maxProduct(self, nums: List[int]) -> int: | ||
maxProducts = [nums[0]] | ||
minProducts = [nums[0]] | ||
# Store all max/minProducts[i]: the max/min product of all subarrays that have nums[i] as the last element. | ||
# Time: O(n) | ||
# Space: O(n) | ||
for num in nums[1:]: | ||
newMaxProduct = max(maxProducts[-1] * num, minProducts[-1] * num, num) | ||
newMinProduct = min(maxProducts[-1] * num, minProducts[-1] * num, num) | ||
maxProducts.append(newMaxProduct) | ||
minProducts.append(newMinProduct) | ||
return max(maxProducts) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from typing import List | ||
|
||
|
||
class Solution: | ||
# Time: O(n) | ||
# Space: O(1) | ||
def missingNumber(self, nums: List[int]) -> int: | ||
n = len(nums) | ||
# MissingNumber = (Sum of 1, 2, ..., n) - Sum of nums) | ||
# Time: O(n) | ||
return n * (n + 1) // 2 - sum(nums) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import re | ||
|
||
|
||
class Solution: | ||
# Time: O(n) | ||
# Space: O(1) | ||
def isPalindrome(self, s: str) -> bool: | ||
# 1. Convert string | ||
# Time: O(n) | ||
# Space: O(n) since re.sub() will internally use a new string of length n. | ||
s = re.sub('[^a-z0-9]', '', s.lower()) | ||
length = len(s) | ||
# 2. Check if the string reads the same forward and backward, one by one. | ||
# Time: O(n) | ||
# Space: O(1) | ||
for i in range(length): | ||
if (s[i] != s[length - 1 - i]): | ||
return False | ||
return True |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.