반응형
Recent Posts
Notice
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 10250
- Python 20001
- python 1259
- softeer
- til
- 프로그래머스
- 백준 팰린드롬수
- python 10989
- 코딩테스트 준비
- 백준 카드1
- leetcode
- 99항해
- BOJ
- Python
- python 14503
- 큐
- 스택
- 개발자 취업
- 일곱 난쟁이
- 백준 막대기
- leetcode 2405
- BFS
- 항해99
- 백준
- 구현
- 백준 2309
- 파이썬
- boj 2309
- python 2309
- 99클럽
Archives
- Today
- Total
목록2024/06/18 (1)
동까의 코딩
[99클럽] 29일차 TIL
https://leetcode.com/problems/minimum-suffix-flips/submissions/1291875785/ 오늘의 문제는 leetcode의 문자열 문제입니다. class Solution: def minFlips(self, target: str) -> int: acc=0 for i in range(len(target)): if target[i]=="0" and acc%2==0 or target[i]=="1" and acc%2==1: continue else: acc+=1 return acc
문제 풀이/99클럽
2024. 6. 18. 11:13