▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/count-asterisks/ Count Asterisks - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com * 또는 | 을 포함하거나, 포함하지 않는 문자열 s가 주어질 때, * 의 개수를 반환하는 문제. | (vertical bars)는 짝수 개로 존재한다. * (Asterisk) 를 셀 때 bars pair의 사이에 있는 것은 제외한다. # 첫번째 테스트 케이스만 고려 cl..