Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SWEA #Python #알고리즘
- ImageCaptioning
- Bayes'Theorem
- 마코프부등식
- MachineLearning
- DeepLearning
- tensor
- CycleGAN
- 머신러닝
- TorchHub
- AlexNet
- ResNet
- 젠센부등식
- pytorch
- DeepLearing
- 체비셰프부등식
- Bayes'Rule
- bayesian
- bayes
- Python
- PRML
- GAN
- NeuralTalk
Archives
- Today
- Total
euphoriaO-O
[Python] SWEA 1234 비밀번호 본문
나의 잘못된 코드: 런타임 에러
for t in range(1,11):
n,s = int(input()), input()
while tmp != s:
tmp = s
s = s.replace('00', '').replace('11', '').replace('22', '').replace('33', '').replace('44', '').replace('55', '').replace('66', '').replace('77', '').replace('88', '').replace('99', '')
print('#%d %s' % (t, s))
Stack을 이용한 코드
for t in range(1,11):
n,s = input().split()
answer = ''
for ss in s:
if len(answer) > 0 and answer[-1] == ss:
answer = answer[:-1]
else:
answer += ss
print('#%d %s' % (t, answer))
'Programming > Algorithm' 카테고리의 다른 글
[Python][프로그래머스] 보석 쇼핑 (0) | 2020.07.11 |
---|---|
[Python][프로그래머스] 수식 최대화 (0) | 2020.07.11 |
[Python][프로그래머스] 키패드 누르기 (0) | 2020.07.11 |
Comments