프로그래머스 120815 피자 나눠 먹기 (2)

1 개요[ | ]

프로그래머스 120815 피자 나눠 먹기 (2)

2 C++[ | ]

#include <string>
#include <vector>
#include <numeric>
using namespace std;

int solution(int n) {
    return lcm(n,6)/6;
}
#include <string>
#include <vector>
#include <numeric>
using namespace std;

int solution(int n) {
    return n/gcd(n,6);
}

3 같이 보기[ | ]