본문 바로가기
python-algorithm

leetcode 2221. Find Triangular Sum of an Array

by 무적김두칠 2022. 4. 25.

1
2
3
4
5
6
7
8
class Solution:
    def triangularSum(self, nums: List[int]) -> int:
        for j in range(len(nums)-1):
            tmp=[]
            for i in range(1,len(nums)):
                tmp.append( (nums[i]+nums[i-1])%10 )
            nums=tmp
        return(nums[0])
cs
반응형

'python-algorithm' 카테고리의 다른 글

leetcode 1910. Remove All Occurrences of a Substring  (0) 2022.04.26
leetcode 46. Permutations  (0) 2022.04.26
백준 9012 괄호  (0) 2022.04.22
백준 24510 시간복잡도를 배운 도도  (0) 2022.04.21
백준 25024 시간과 날짜  (0) 2022.04.21

댓글