[LeetCode] 2269. Find the K-Beauty of a Number

김민우·2023년 1월 21일
0

알고리즘

목록 보기
118/189

- Problem

2269. Find the K-Beauty of a Number


- 내 풀이

class Solution:
    def divisorSubstrings(self, num: int, k: int) -> int:
        answer = 0
        num_list = list(str(num))
        N = len(num_list)
        
        for i in range(N-k+1):
            divisor = int("".join(num_list[i:i+k]))
            if divisor and num % divisor == 0:
                answer += 1

        return answer

- 결과

profile
Pay it forward.

0개의 댓글