멀쩡한사각형

limuubin·2022년 4월 27일
0
post-custom-banner

function solution(w, h) {
 
    function GCD(w,h){
        let mod = w%h
        if( mod === 0){
           return h
        }
        else return GCD(h,mod)
    }

    let gcd = GCD(w,h)
    
    return w*h-(w+h-gcd)
       
}

0개의 댓글