일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 최적화
- AI
- gitCLI
- html5
- JavaScript
- hatso
- CSS
- git
- array
- API
- dev
- 함수
- 변수
- ES6+
- learn next.js
- react
- object
- Python
- This
- DOM
- 우아한테코톡
- ES5+
- 햇소
- 선택자
- hooks
- next.js
- github
- es6
- JS
- developerlife
Archives
- Today
- Total
codinghatso
알고리즘 whit python.02 본문
문자열 뒤집기
input = "011110"
# 011110
# 모두 0으로 만드는 방법에서 최소로 뒤집는 숫자
# count_to_all_zero
# 0 -> 1로 문자열이 전환되는 순간 count_to_all_zero += 1
# 모두 1으로 만드는 방법에서 최소로 뒤집는 숫자
# count_to_all_one
# 1 -> 0로 문자열이 전환되는 순간 count_to_all_one += 1
def find_count_to_turn_out_to_all_zero_or_all_one(string):
count_to_all_zero = 0
count_to_all_one = 0
if string[0] == '0':
count_to_all_one += 1
elif string[0] == '1':
count_to_all_zero += 1
for i in range(len(string) - 1):
if string[i] != string[i+1]:
if string[i+1] == '0':
count_to_all_one += 1
if string[i+1] == '1':
count_to_all_zero += 1
return min(count_to_all_zero, count_to_all_one)
result = find_count_to_turn_out_to_all_zero_or_all_one(input)
print(result)
'코테일지' 카테고리의 다른 글
알고리즘 with python.06 (0) | 2021.06.13 |
---|---|
알고리즘 with python.05 (0) | 2021.05.30 |
알고리즘 with python.04 (0) | 2021.05.30 |
알고리즘 with python.03 (0) | 2021.05.30 |
알고리즘 with python.01 (0) | 2021.05.20 |
Comments