leetCode 문제 풀이 1281번 Subtract the Product and Sum of Digits of an Integer
1281. Subtract the Product and Sum of Digits of an Integer
문제
정수로 이루어진 배열 n이 주어질 때, 조건을 만족하는 값을 return 하는 함수 짜기
가정
n은 1이상 100,000이하의 정수
조건
n의 각 자리의 숫자들을 추출하고, 그 수들의 곱과 합의 차를 출력
풀이
var subtractProductAndSum = function(n) { const result = [...String(n)].map((data)=>parseInt(data,10)); const pDigit = result.reduce((a,b)=>a*b); const sDigit = result.reduce((a,b)=>a+b); return pDigit - sDigit; };
Author And Source
이 문제에 관하여(leetCode 문제 풀이 1281번 Subtract the Product and Sum of Digits of an Integer), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@devmomo/leetCode-문제-풀이-1281번-Subtract-the-Product-and-Sum-of-Digits-of-an-Integer저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)