728x90
반응형
1. 문자열을 정수로 바꾸기
class Solution {
public int solution(String s) {
int answer = 0;
answer = Integer.parseInt(s);
return answer;
}
}
2. x만큼 간격이 있는 n개의 숫자
class Solution {
public long[] solution(long x, int n) {
long[] answer = new long[n];
long j = 1;
for(int i=0; i<n; i++){
answer[i] = x * j ;
j++;
}
return answer;
}
}
728x90
반응형
'study_IT > 알고리즘 노트' 카테고리의 다른 글
[programmers] 코딩테스트 기초 Day 1, 2 (1) | 2024.01.31 |
---|---|
[programmers] 코딩테스트 입문 Day 12 (1) | 2023.10.28 |
[programmers] 코딩테스트 입문 Day 11 (0) | 2023.10.27 |
[programmers] Lv1. 약수의 합, 평균 구하기 (0) | 2023.10.26 |
[programmers] 코딩테스트 입문 Day 10 (0) | 2023.10.26 |