일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- git 명령어
- input type password
- git autocrlf
- LF
- input 안보임
- 응답코드
- react
- lazy-load
- prettier
- HTTPS
- IP주소
- 개행문자
- 원시값
- k번째수
- vscode
- eslint
- 퀵정렬
- CRA
- git
- JadenCase
- CRLF
- 가장큰수
- eslint-prettier
- expected linebreaks to be 'crlf' but found 'lf' linebreak-style
- expected linebreaks to be 'lf' but found 'crlf' linebreak-style
- 참조타입
- REST API
- 프로그래머스
- password 안보임
- git 개행문자
Archives
- Today
- Total
목록JadenCase (1)
우파루파의 개발 기록
[프로그래머스] JadenCase 문자열 만들기
안녕하세요. 이번 문제는 프로그래머스 2단계 - JadenCase 문자열 만들기 입니다. 정답률 81%의 쉬운 문제입니다. Jaden case라는 말을 이번 문제를 풀이하면서 처음 접해봤습니다. 견문을 넓힌 것 같아 기분이 좋습니다. 덤으로 이번 문제는 풀이 했더니 11점을 주더라구요. 아주 기분이 좋습니다. function solution(s) { let newWord = true; let result = ""; for (let i = 0; i < s.length; i ++) { const word = s[i]; if (word === " ") { result += word; newWord = true; } else { if (!isNaN(Number(word))) { result += word; } ..
development/알고리즘
2022. 9. 11. 23:04