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 | 31 |
Tags
- 발더스게이트
- 잠실새내
- 메일우유
- 바질토마토뭐시기
- 누룽지소금빵
- 코테
- 송리단
- 밥먹고
- 발더스모드
- 맛집
- DIY
- 토이프로젝트
- 버즈2프로
- 눈알빠지겠네
- LeetCode
- 뜨아거
- 서울제빵소
- 게임
- 노노그램
- 3d퍼즐
- 알고리즘테스트
- 취미
- 코딩테스트
- 천등
- 하스스톤
- 나쫌
- 메탈퍼즐
- 발더스3
- javascript
- 미앤아이
Archives
- Today
- Total
목록2023/10/01 (1)
.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
coding test/leetCode
2023. 10. 1. 21:39