CHIqueen
[Intro] isLucky 본문
def isLucky(n):
return sum(int(i) for i in str(n)[:len(str(n))//2]) == sum(int(i) for i in str(n)[len(str(n))//2:])
str로 만들어준다음에 슬라이싱으로 반 잘라 합이 같은지 비교했다.
'프로그래밍 > CodeSignal' 카테고리의 다른 글
[Intro] reverseParenthese (0) | 2020.03.11 |
---|---|
[Intro] Sort by Height (0) | 2020.03.11 |
[Intro] commonCharacterCount (0) | 2020.03.11 |
[Intro] All Longest Strings (0) | 2020.03.11 |
[Intro] matrixElementsSum (0) | 2020.03.11 |
Comments