Leetcode 솔루션: 별표 계산
2531 단어 logicleetcodetutorialprogramming
각 '|' 쌍 사이의 ''를 제외하고 s에서 ''의 수를 반환합니다.
각 '|' 정확히 한 쌍에 속합니다.
class Solution(object):
def countAsterisks(self, s):
if not "*" in s:
return 0
stack = []
count = 0
for char in s:
if char == "|":
count += 1
stack.append(char)
if count == 2:
while count:
el = stack.pop()
if el == "|":
count -= 1
return "".join(stack).count("*")
Reference
이 문제에 관하여(Leetcode 솔루션: 별표 계산), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/salahelhossiny/leetcode-solutions-count-asterisks-2481텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)