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 |
Tags
- Python
- DeepLearing
- AlexNet
- SWEA #Python #알고리즘
- bayes
- GAN
- 머신러닝
- 마코프부등식
- MachineLearning
- 체비셰프부등식
- ImageCaptioning
- bayesian
- ResNet
- 젠센부등식
- NeuralTalk
- CycleGAN
- PRML
- DeepLearning
- Bayes'Theorem
- TorchHub
- pytorch
- tensor
- Bayes'Rule
Archives
- Today
- Total
목록SWEA #Python #알고리즘 (1)
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(answe..
Programming/Algorithm
2020. 7. 11. 01:30