Leet Code (2) 썸네일형 리스트형 1281. Subtract the Product and Sum of Digits of an Integer Description Given an integer number n, return the difference between the product of its digits and the sum of its digits. Example Input: n = 234 Output: 15 Explanation: Product of digits = 2 * 3 * 4 = 24 Sum of digits = 2 + 3 + 4 = 9 Result = 24 - 9 = 15 Solve class Solution: def subtractProductAndSum(self, n: int) -> int: each_list = [] while n > 0: each_list.append(int(n % 10)) n //= 10 each_m.. [LeetCode] Palindrome 고찰하기 Given a strings, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. 간단한 문제라 그냥 풀었지만 문득 내가 풀었던 방법 외에 다른 방법은 어떤 식이 있는지에 대해 궁금함이 생겼다. 먼저 내가 썼던 코드이다. def isPalindrome(self, s: str) -> bool: remove_specialized = "".join([x.lower() for x in s if x.isalnum()]) return remove_specialized == remove_specialized[::-1] 매개변수 `s`로 전달된 값을 반복문을 돌리면서 isalnum()을 이용하여 특수문자.. 이전 1 다음