일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리액트
- useState
- react
- websocket
- NextJS
- 자바스크립트
- 코딩테스트 고득점 Kit
- 자바
- 장고
- 데이터모델링과마이닝
- vanillaJS
- codesandbox
- 컴퓨터 네트워크
- 디자인 패턴
- react hook
- 프로그래머스
- react firebase
- React JS
- 프로그래머스 완전탐색
- 리액트 훅
- 프로그래밍 언어론
- JavaScript
- design pattern
- 프로그래머스 자바
- 코딩테스트 고득점 Kit 완전탐색
- 코틀린
- 백준
- useEffect
- 자바 공부
- Java
Archives
- Today
- Total
기록하는 개발자
[프로그래머스][JAVA] 숫자 문자열과 영단어 본문
728x90
https://programmers.co.kr/learn/courses/30/lessons/81301
* replace 함수는 문자열 내 특정 substring을 다른 문자열로 바꿔준다.
[ 예시 ]
String s = "aaabbb";
s.replace("aaa", "zzz");
→ s = "zzzbbb"
class Solution {
public int solution(String s) {
String[] words= {"zero" , "one" , "two" , "three" , "four" , "five" , "six" , "seven" , "eight" , "nine"};
String[] nums= {"0","1","2","3","4","5","6","7","8","9"};
for (int i = 0 ; i <10 ; i++)
s = s.replace(words[i] , nums[i]);
return Integer.parseInt(s);
}
}
728x90
'Algorithm' 카테고리의 다른 글
[프로그래머스][코딩테스트 고득점 Kit][Javascript] 피로도 (0) | 2023.08.07 |
---|---|
[백준][JAVA] 1913 : 달팽이 (0) | 2023.01.10 |
[프로그래머스][JAVA] 키패드 누르기 (0) | 2022.05.03 |
[백준][JAVA] 11729 : 하노이 탑 이동 순서 (0) | 2021.12.09 |
[백준][JAVA] 1697 : 숨바꼭질 (0) | 2021.10.07 |