Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ChatGPT
- SW Expert Academy
- Real or Not? NLP with Disaster Tweets
- ubuntu
- 캐치카페
- Git
- 데이콘
- gs25
- 맥북
- Kaggle
- PYTHON
- github
- 편스토랑
- 파이썬
- programmers
- 더현대서울 맛집
- leetcode
- Baekjoon
- 편스토랑 우승상품
- AI 경진대회
- 자연어처리
- 코로나19
- 우분투
- 프로그래머스
- 금융문자분석경진대회
- dacon
- hackerrank
- 프로그래머스 파이썬
- 백준
- Docker
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 컨트롤 제트 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 컨트롤 제트 입니다.
👨🏻💻 문제 풀이
1. answer 라는 스택(리스트) 를 하나 만들고
answer = []
2. 문자열 s를 공백을 기준으로 split 한 값을 하나씩 꺼내서 계속 int 로 변환하여 append 시키다가
3. "Z" 가 나오면 마지막에 append 시켰던 값을 pop 시켜주었습니다.
for num in s.split():
if num == "Z":
answer.pop()
continue
answer.append(int(num))
4. 마지막으로 1-3 을 거치고 난 뒤 answer 에 남아있는 모든 값을 더해서 return 하면 ! 정답입니다.
sum(answer)
👨🏻💻 코드 ( Solution )
def solution(s):
answer = []
for num in s.split():
if num == "Z":
answer.pop()
continue
answer.append(int(num))
return sum(answer)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[Programmers] 옹알이 (2) (Python) (0) | 2023.02.20 |
---|---|
[Programmers] 카드 뭉치 (Python) (0) | 2023.02.19 |
[Programmers] OX퀴즈 (Python) (0) | 2023.02.16 |
[Programmers] 연속된 수의 합 (Python) (0) | 2023.02.15 |
[Programmers] 로그인 성공? (Python) (0) | 2023.02.14 |
Comments