Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 우분투
- SW Expert Academy
- ChatGPT
- ubuntu
- dacon
- 맥북
- PYTHON
- leetcode
- 백준
- 프로그래머스 파이썬
- programmers
- AI 경진대회
- 캐치카페
- 편스토랑
- github
- 편스토랑 우승상품
- Git
- 금융문자분석경진대회
- hackerrank
- Docker
- 코로나19
- Real or Not? NLP with Disaster Tweets
- 프로그래머스
- 자연어처리
- 데이콘
- 더현대서울 맛집
- Baekjoon
- Kaggle
- gs25
- 파이썬
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 1417. Reformat The String (Python) 본문
728x90
반응형
Given alphanumeric string s. (Alphanumeric string is a string consisting of lowercase English letters and digits).
You have to find a permutation of the string where no letter is followed by another letter and no digit is followed by another digit. That is, no two adjacent characters have the same type.
Return the reformatted string or return an empty string if it is impossible to reformat the string.
Example 1:
Input: s = "a0b1c2"
Output: "0a1b2c"
Explanation: No two adjacent characters have the same type in
"0a1b2c". "a0b1c2", "0a1b2c", "0c2a1b" are also valid permutations.
Example 2:
nput: s = "leetcode"
Output: ""
Explanation: "leetcode" has only characters so we cannot separate them by digits.
Example 3:
Input: s = "1229857369"
Output: ""
Explanation: "1229857369" has only digits so we cannot separate them by characters.
Example 4:
Input: s = "covid2019"
Output: "c2o0v1i9d"
Example 5:
Input: s = "ab123"
Output: "1a2b3"
Constraints:
- 1 <= s.length <= 500
- s consists of only lowercase English letters and/or digits.
Solution
class Solution:
def reformat(self, s: str) -> str:
answer = []
s_list = list(s)
characters = []
numbers = []
for s in s_list:
if s.isalpha() == True:
characters.append(s)
if s.isnumeric() == True:
numbers.append(s)
if abs(len(characters) - len(numbers)) >= 2:
return ""
elif len(characters) > len(numbers):
while numbers:
answer.append(characters.pop())
answer.append(numbers.pop())
answer.append(characters.pop())
elif len(characters) <= len(numbers):
while characters:
answer.append(numbers.pop())
answer.append(characters.pop())
if len(numbers) != 0:
answer.append(numbers.pop())
return "".join(answer)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 234. Palindrome Linked List (Python) (0) | 2020.09.30 |
---|---|
[leetCode] 203. Remove Linked List Elements (Python) (0) | 2020.09.29 |
[leetCode] 1051. Height Checker (Python) (0) | 2020.09.27 |
[leetCode] 925. Long Pressed Name (Python) (0) | 2020.09.25 |
[leetCode] 686. Repeated String Match (Python) (0) | 2020.09.24 |
Comments