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
- 반순혁
- 프로그래밍
- 데이터베이스
- 독서
- JavaScript
- 책
- 웹퍼블리싱
- Python
- 파이썬
- K배터리레볼루션
- css
- 코딩
- 개발
- 만일내가인생을다시산다면
- 장편소설
- Java
- 김혜남
- ComputerScience
- html
- 김미경의마흔수업
- 자바스크립트
- 컴퓨터과학
- database
- 김미경
- 오라클
- K배터리
- 웹페이지만들기
- 라플라스의마녀
- 서평
- 자바
Archives
- Today
- Total
JiYoung Dev 🖥
[JAVA] 배열 크기 변경하기 본문
Arrays.copyOf(배열, 변경하고자 하는 크기)
copyOf로 배열 복하하고 원하는 크기로 지정
class Solution {
public int[] solution(int []arr) {
int idx = 1;
int[] answer = new int[arr.length];
answer[0] = arr[0];
for(int i = 1 ; i < arr.length ; i++) {
if(arr[i] != arr[i-1]) {
answer[idx] = arr[i];
idx++;
}
}
int[] copy = Arrays.copyOf(answer, idx);
return copy;
}
}
'Question' 카테고리의 다른 글
[python] 소수점 자릿수 지정 (round) (0) | 2023.08.22 |
---|---|
[JAVA] char 에서 문자열로 변환하기 (0) | 2023.08.21 |
[JAVA] 문자열 자르기(substring) (0) | 2023.08.11 |
[C#] System.Threading.Timer 쓰레드 구현 (0) | 2023.08.10 |
[Thymeleaf] th:onclick과 location.href 함께 사용하기 (0) | 2023.08.08 |