내가 작성한 코드는 아래와 같다.class Solution { boolean solution(String s) { boolean answer = true; int countP = 0; int countY = 0; for (int i = 0; i 다른 사람들의 코드를 보며 내가 생각하지 못했던 점들을 정리해보려 한다. 예시 코드 1class Solution { boolean solution(String s) { s = s.toLowerCase(); int count = 0; for (int i = 0; i 생각해본 지점 (1) toUpperCase() / toLowerCase()나는 정말 ..