반응형
Notice
Recent Posts
Recent Comments
- Today
- Total
작심삼일
[LeetCode] 1323 | Maximum 69 Number | Python 본문
728x90
반응형
문제 링크: https://leetcode.com/problems/maximum-69-number/
문제
You are given a positive integer num consisting only of digits 6 and 9.
Return the maximum number you can get by changing at most one digit (6 becomes 9, and 9 becomes 6).
조건
- 1 <= num <= $10^4$
- num consists of only 6 and 9 digits.
내 풀이
1. replace 미사용
앞에서부터 훑으며 처음으로 6이 나왔을 때 그 6을 9로 바꾼 후 리턴한다.
2. replace 사용
replace를 사용하면 여러 '6'이 있을 때 맨 앞의 '6'만 바꿀 수 있다.
코드
1. replace 미사용
class Solution:
def maximum69Number (self, num: int) -> int:
num = str(num)
for idx in range(len(num)):
if num[idx] == '6':
num = num[:idx] + '9' + num[idx+1:]
break
return num
2. replace 사용
str(num).replace('6', '9', 1)
728x90
반응형
'스터디 > 코테' 카테고리의 다른 글
[LeetCode] 901 | Online Stock Span | Python (0) | 2022.11.09 |
---|---|
[LeetCode] 1544 | Make The String Great | Python (0) | 2022.11.09 |
[LeetCode] 2131 | Longest Palindrome by Concatenating Two Letter Words | Python (0) | 2022.11.03 |
[LeetCode] 433 | Minimum Genetic Mutation | Python (0) | 2022.11.02 |
[LeetCode] 766 | Toeplitz Matrix | Python (0) | 2022.10.31 |
Comments