이제부터 본격적으로 PS 공부를 시작하려고, 같이 공부하던 스터디 깃 레포를 딱 클론 받고, 예전에 적었던 자바 코드를 딱 적은 순간..! package programmers.코딩_기초_트레이닝; public class flag에_따라_다른_값_반환하기 { class Solution { public static int solution(int a, int b, boolean flag) { return flag ? a + b : a - b; } } public static void main(String[] args) throws Exception { int answer = Solution.solution(-4,7,false); System.out.println(answer); } } 오류가 발생했다. 시작부..