728x90

join 5

[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] 1323. Maximum 69 Number (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/maximum-69-number/ Maximum 69 Number - 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 양의 정수 num이 주어진다. num은 6과 9로만 이루어져있다. 딱 1번, 한 자리의 수를 6에서 9로 바꿀 수 있을 때, 최댓값을 정수로 반환하는 문제. for j in range(len(num)): if num[j] == "6": num[j] = "9" bre..

[leetCode] 1662. Check If Two String Arrays are Equivalent (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/check-if-two-string-arrays-are-equivalent/ Check If Two String Arrays are Equivalent - 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 1개 이상의 문자열이 들어있는 리스트 2개가 주어진다. 각 리스트의 원소를 전부 문자열 형태로 붙여 합쳤을 때 두 리스트의 값이 같으면 True를 다르면 False를 반환하는 문제..

[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