Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드
- DFS와BFS
- Vue
- django
- 파이썬
- cos pro
- C++
- DFS
- 코테
- 백준
- 알고리즘
- BAEKJOON
- Flutter
- 코딩테스트
- 코드품앗이
- 동적계획법과최단거리역추적
- issue
- Python
- AndroidStudio
- cos pro 1급
- 개발
- DART
- vuejs
- Algorithm
- 안드로이드스튜디오
- android
- 분할정복
- 동적계획법
- codingtest
- cos
Archives
- Today
- Total
목록cos 비밀번호 검사 (1)
Development Artist
[COS Pro 1급, Python] 2차 9번 : 비밀번호 검사
문제 유형 한줄 수정 난이도 normal Note 1. 연속된 3자리수 체크 하는 알고리즘. 연속된 x, y, z 문자 or 숫자가 있다면 y-x, z-y의 차이가 같아야 한다. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean # 2차 9번 def solution(password): length = len(password) for i in range(length - 2): first_check = ord(password[i + 1]) - ord(password[i]) second_check = ord(password[i + 2]) - ord(password[i + 1]) if first_check == second_check and (fi..
Algorithm/COS
2022. 2. 25. 10:37