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
- 코테
- cos pro 1급
- 코딩테스트
- cos pro
- 분할정복
- 동적계획법
- 개발
- DFS
- 파이썬
- DFS와BFS
- Python
- Algorithm
- AndroidStudio
- android
- C++
- 코드품앗이
- 안드로이드스튜디오
- django
- issue
- 동적계획법과최단거리역추적
- 알고리즘
- cos
- 백준
- Vue
- 안드로이드
- BAEKJOON
- Flutter
- codingtest
- DART
- vuejs
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 1차 2번 : 해밍 거리 구하기 본문
728x90
반응형
문제 유형
빈칸
난이도
easy
Note
1. 해밍 디스턴스(Hamming distance)가 무엇인지.
Code
def func_a(string, length):
padZero = ""
padSize = length - len(string)
for i in range(padSize):
padZero += "0"
return padZero + string
def solution(binaryA, binaryB):
max_length = max(len(binaryA), len(binaryB))
binaryA = func_a(binaryA, max_length)
binaryB = func_a(binaryB, max_length)
hamming_distance = 0
for i in range(max_length):
if binaryA[i] != binaryB[i]:
hamming_distance += 1
return hamming_distance
binaryA = "10010"
binaryB = "110"
ret = solution(binaryA, binaryB)
print("solution 함수의 반환 값은", ret, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 1차 6번 : 체스의 나이트 (0) | 2022.02.24 |
---|---|
[COS Pro 1급, Python] 1차 5번 : 소용돌이 수 (0) | 2022.02.24 |
[COS Pro 1급, Python] 1차 4번 : 타임머신 (0) | 2022.02.24 |
[COS Pro 1급, Python] 1차 3번 : 계산기 by 문자열 (0) | 2022.02.24 |
[COS Pro 1급, Python] 1차 1번 : 음식전문점 운영 (0) | 2022.02.24 |
Comments