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
- Matrix
- implement
- 코테
- hash table
- Number Theory
- dynamic programming
- simulation
- 코딩테스트
- Data Structure
- Math
- Tree
- 자바
- geometry
- Class
- sorting
- string
- bit manipulation
- Binary Search
- greedy
- Counting
- Method
- Stack
- 구현
- two pointers
- array
- 파이썬
- database
- java
- SQL
- Binary Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 조건에 맞게 수열 변환하기 3 본문
1. Input, Output, Example
- 만약 k가 홀수라면 arr의 모든 원소에 k를 곱하고, k가 짝수라면 arr의 모든 원소에 k를 더한 후 arr을 반환한다.
2. Constraint
1) 1 ≤ arr의 길이 ≤ 1,000,000
2) 1 ≤ arr의 원소의 값 ≤ 100
3) 1 ≤ k ≤ 100
3. Code
1) 첫 코드(2023/04/24)
class Solution {
public int[] solution(int[] arr, int k) {
if(k%2==0){
for(int i=0 ; i<arr.length ; i++)
arr[i] += k;
} else{
for(int i=0 ; i<arr.length ; i++)
arr[i] *= k;
}
return arr;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 첫 번째로 나오는 음수 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 카운트 업 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 정수 찾기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 문자열의 뒤의 n글자 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 소문자로 바꾸기 (0) | 2023.04.24 |