[Leetcode] 1281. Subtract the Product and Sum of Digits of an Integer (JS)

OROSY·2021년 4월 28일
0

Algorithms

목록 보기
10/38
post-thumbnail

출처

Leetcode 1281. Subtract the Product and Sum of Digits of an Integer

문제

나의 코드

integerdegit으로 바꾸는 작업에 대해서 고민을 해보고 n.toString().split('')로 코드를 진행했지만, degit이 되지 않고 string으로밖에 되지 않아서 검색을 했다.

Array.from(String(n), Number)라는 방법이 있다더군요 호오..

1
2
3
4
5
var subtractProductAndSum = function(n) {
    const multiply = Array.from(String(n), Number).reduce((a, b) => a * b)
    const sum = Array.from(String(n), Number).reduce((a, b) => a + b)
    return multiply - sum
};
cs

실행 결과

profile
Life is a matter of a direction not a speed.

0개의 댓글