프로그래머스 - 예상 대진표

KDG: First things first!·2024년 8월 14일
0

프로그래머스

목록 보기
9/18

문제 링크: https://school.programmers.co.kr/learn/courses/30/lessons/12985

정답 코드

class Solution {
    public int solution(int n, int a, int b) {

        int answer = 0;
        while(a != b) { // a와 b가 같아질 때까지 반복
            a = (a + 1) / 2; // a가 홀수면 1을 더하고 2로 나눔
            b = (b + 1) / 2; // b가 홀수면 1을 더하고 2로 나눔
            answer++;
        }

        return answer;
    }
}


profile
알고리즘, 자료구조 블로그: https://gyun97.github.io/

0개의 댓글