728x90

문자열자르기 3

[leetCode] 2315. Count Asterisks (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/count-asterisks/ Count Asterisks - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com * 또는 | 을 포함하거나, 포함하지 않는 문자열 s가 주어질 때, * 의 개수를 반환하는 문제. | (vertical bars)는 짝수 개로 존재한다. * (Asterisk) 를 셀 때 bars pair의 사이에 있는 것은 제외한다. # 첫번째 테스트 케이스만 고려 cl..

[leetCode] 557. Reverse Words in a String III (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/reverse-words-in-a-string-iii/ Reverse Words in a String III - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문자열 s가 주어진다. 공백 기준으로 나눈 문자 단위로 순서를 뒤집고 다시 공백 기준으로 합쳐서 문자열로 반환하는 문제. class Solution: def reverseWords(self, s: str) -> str: a..

[leetCode] 1859. Sorting the Sentence (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/sorting-the-sentence/ Sorting the Sentence - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class Solution: def sortSentence(self, s: str) -> str: tmp = s.split() # 공백 기준으로 잘라 저장 answer = [] for i in range(1,len(tmp)+1): # 1부터 단어 수 만큼..

728x90