https://leetcode.com/problems/minimum-element-after-replacement-with-digit-sum/
1
2
3
4
5
6
|
class Solution:
def minElement(self, nums: List[int]) -> int:
answer = [sum(map(int, str(nums[i]))) for i in range(len(nums))]
return min(answer)
|
cs |
list comprehension과 각 자리수 합을 구하기 위해서
원본 데이터 타입을 문자열로 타입 캐스팅해서 사용합니다.
반응형
'python-algorithm' 카테고리의 다른 글
백준 32260 A + B (0) | 2024.10.27 |
---|---|
백준 32154 SUAPC 2024 Winter (1) | 2024.10.27 |
leetcode 3210. Find the Encrypted String (0) | 2024.09.23 |
3194. Minimum Average of Smallest and Largest Elements (0) | 2024.09.21 |
3232. Find if Digit Game Can Be Won (0) | 2024.09.21 |
댓글