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
- 로그인
- yml
- 헬스체크
- Spring
- 반환
- @RequestBody
- 플라이웨이트
- ResponseDto
- Boot
- actuator
- 코딩테스트
- JWT
- springboot
- 디자인 패턴
- DTO
- 프로퍼티
- response
- property
- RequestParam
- redis
- 파라미터
- Security
- @Value
- @RequestParam
- 코드워즈
- RequestBody
- Request
- Docker
- enum
- Codewars
Archives
- Today
- Total
목록알고리즘/CodeWars (1)
있을 유, 참 진
[CodeWars] Highest Scoring Word
처음에 풀었던 방법 문장을 단어로 분할 -> 단어를 캐릭터로 변환 후 점수를 계산(알파벳 enum을 활용), 문자열의 아스키 코드를 그대로 사용하려고 했는데 원하는 답이 나오지 않아 해당 방법을 사용함 package _code_wars; public class HighestScoringWord { public static void main(String[] args) { String test = "man i need a taxi up to ubud"; String test2 = "what time are we climbing up to the volcano"; String test3 = "take me to semynak"; System.out.println(high(test)); System.out.pr..
알고리즘/CodeWars
2023. 4. 17. 16:55