Notice
Recent Posts
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
- 코테
- javascript
- 밥먹고
- 노노그램
- 토이프로젝트
- 눈알빠지겠네
- 서울제빵소
- 미앤아이
- 나쫌
- 뜨아거
- 취미
- 바질토마토뭐시기
- 3d퍼즐
- 발더스모드
- LeetCode
- 메일우유
- 하스스톤
- 발더스게이트
- 알고리즘테스트
- 메탈퍼즐
- 코딩테스트
- 송리단
- 게임
- 누룽지소금빵
- DIY
- 버즈2프로
- 천등
- 잠실새내
- 발더스3
- 맛집
Archives
- Today
- Total
.Zzumbong
[leetCode/JS] 557. Reverse Words in a String III 본문
난이도 [ 😊 ] Easy
문제 설명
Given a string s
, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
문자열 s가 주어지면 공백과 단어 순서를 그대로 유지하면서 단어의 문자 순서를 반대로 바꾼다.
입출력 예
Example 1:
Input: s = "Let's take LeetCode contest"
Output: "s'teL ekat edoCteeL tsetnoc"
Example 2:
Input: s = "God Ding"
Output: "doG gniD"
Constraints
1 <= s.length <= 5 * 104
s
contains printable ASCII characters.s
does not contain any leading or trailing spaces.- There is at least one word in
s
. - All the words in
s
are separated by a single space.
내 솔루션
- ' ' space를 이용해서 배열로 변경 후 글자별로 reverse해서 합친다.
/**
* @param {string} s
* @return {string}
*/
var reverseWords = function(s) {
return s.split(' ').map((s)=>s.split('').reverse().join('')).join(' ')
};
감상평
- 코테에 이런 재미있고 쉬운 문제만 나오면 얼마나 좋을까..
'coding test > leetCode' 카테고리의 다른 글
[leetCode/JS] 1512. Number of Good Pairs (0) | 2023.10.03 |
---|---|
[leetCode/JS] 2038. Remove Colored Pieces if Both Neighbors are the Same Color (0) | 2023.10.02 |
[leetCode/JS] 1624. Largest Substring Between Two Equal Characters (0) | 2023.09.29 |
[leetCode/JS] 896. Monotonic Array (0) | 2023.09.29 |
[leetCode/JS] 880. Decoded String at Index (0) | 2023.09.28 |
Comments