Skip to content

Commit 9effdd5

Browse files
committed
fix: 스페이스 수정
1 parent 0b0ad1b commit 9effdd5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

linked-list-cycle/Seoya0512.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ def hasCycle(self, head: Optional[ListNode]) -> bool:
77
cycle_set.add(head)
88
head = head.next
99
return False
10-

maximum-product-subarray/Seoya0512.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ def maxProduct(self, nums: List[int]) -> int:
1616
prev = prev * nums[j]
1717
max_product = max(max_product, prev)
1818

19-
return max_product
19+
return max_product

0 commit comments

Comments
 (0)