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
- redis
- @RequestBody
- Codewars
- 로그인
- 헬스체크
- property
- Boot
- Request
- 반환
- 코딩테스트
- actuator
- response
- RequestParam
- enum
- 플라이웨이트
- 프로퍼티
- Spring
- DTO
- yml
- JWT
- Docker
- @Value
- ResponseDto
- springboot
- Security
- 디자인 패턴
- 파라미터
- @RequestParam
- RequestBody
- 코드워즈
Archives
- Today
- Total
목록코드워즈 (1)
있을 유, 참 진

처음에 풀었던 방법 문장을 단어로 분할 -> 단어를 캐릭터로 변환 후 점수를 계산(알파벳 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