Posts [알고리즘] 프로그래머스 - 하샤드 수
Post
Cancel

[알고리즘] 프로그래머스 - 하샤드 수


문제

하샤드 수


접근


코드

  • C++ 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using namespace std;

bool solution(int x) {
    bool answer = true;
    int num = x, n = 0;
    while(num > 0){
        n += num%10;
        num /= 10;
    }
    if(x%n == 0){
        answer = true;
    }
    else{
        answer = false;
    }
    return answer;
}
  • 파이썬 코드
1
2
3
4
5
6
7
8
9
10
11
def solution(x):
    n = 0
    num = x
    while num > 0:
        n += num%10
        num //= 10
    if x % n == 0:
        answer = True
    else:
        answer = False
    return answer


This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 - 콜라츠 추측

[알고리즘] 프로그래머스 - 짝수와 홀수