-
[파이썬] 리트코드 1991. Find the Middle Index in Array 풀이기타/알고리즘 2021. 9. 27. 16:23반응형
https://leetcode.com/problems/find-the-middle-index-in-array/
724번 문제와 완전히 동일하다.
해설은 아래 참조
https://dndi117.tistory.com/entry/파이썬-리트코드-724-Find-Pivot-Index
class Solution: def findMiddleIndex(self, nums: List[int]) -> int: left = 0 total = sum(nums) for i, x in enumerate(nums): if left == total - left - x: return i left += x return -1
반응형'기타 > 알고리즘' 카테고리의 다른 글
주피터랩 단축키 설정법 - 커맨드+엔터로 셀 실행하기 (0) 2022.05.22 [파이썬] 리트코드 724. Find Pivot Index 풀이 (0) 2021.09.27 [파이썬] 리트코드 119. Pascal's Triangle II 풀이 (0) 2021.09.23 [파이썬] 리트코드 830. Positions of Large Groups 풀이 (0) 2021.09.21 [파이썬] 리트코드 1413. Minimum Value to Get Positive Step by Step Sum 풀이 (0) 2021.09.20