목록stack (2)
go.od_planter
https://school.programmers.co.kr/learn/courses/30/lessons/42587 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 코드.def solution(priorities, location): answer = [-1]*len(priorities) cnt = 1 len_ = len(priorities) ind = 0 while answer[location] == -1: if priorities[ind] == max(priorities): ..
https://school.programmers.co.kr/learn/courses/30/lessons/12909 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 코드.def solution(s): cnt = 0 for i in s: if cnt 다른 풀이.def solution(s): stack = [] for char in s: if char == '(': stack.append(char) # 여는 괄호는 스택에 추가 else: if not sta..