[자바] 프로그래머스 - 문자열 내 p와 y의 개수
프로그래머스 링크 - https://programmers.co.kr/learn/courses/30/lessons/12916?language=java 12345678910111213141516171819class Solution { boolean solution(String s) { boolean answer = true; int cntY = 0; int cntP = 0; for (int i = 0; i