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
- Stack
- Data Structure
- dynamic programming
- Counting
- Tree
- simulation
- 구현
- Method
- java
- bit manipulation
- Math
- Matrix
- Binary Search
- sorting
- Binary Tree
- geometry
- 파이썬
- string
- SQL
- Class
- 코딩테스트
- database
- array
- greedy
- two pointers
- Number Theory
- 코테
- hash table
- implement
- 자바
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 그림 확대 본문
1. Input, Output, Example
직사각형 형태의 그림 파일이 있고, 이 그림 파일은 1 × 1 크기의 정사각형 크기의 픽셀로 이루어져 있다.
- 그림 파일을 가로 세로로 k배 늘린 그림 파일을 나타내도록 문자열 배열을 반환
2. Constraint
1) 1 ≤ picture의 길이 ≤ 20
2) 1 ≤ picture의 원소의 길이 ≤ 20
3) 모든 picture의 원소의 길이는 같다.
4) picture의 원소는 '.'과 'x'로 이루어져 있다.
5) 1 ≤ k ≤ 10
3. Code
1) 첫 코드(2023/05/04)
class Solution {
public String[] solution(String[] picture, int k) {
String[] answer = new String[picture.length*k];
for(int i=0 ; i<picture.length ; i++){
StringBuilder sb = new StringBuilder();
for(int j=0 ; j<picture[i].length() ; j++)
for(int a=0 ; a<k ; a++) // 이 for문 대신 sb.append(picture[i].charAt(j).repeat(k));
sb.append(picture[i].charAt(j));
for(int j=0 ; j<k ; j++)
answer[k*i+j] = sb.toString();
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2490. Circular Sentence (0) | 2023.05.05 |
---|---|
[프로그래머스/Lv.0] 옹알이 (1) (0) | 2023.05.04 |
[LeetCode/Easy] 2485. Find the Pivot Integer (0) | 2023.05.04 |
[LeetCode/Easy] 2481. Minimum Cuts to Divide a Circle (0) | 2023.05.04 |
[LeetCode/Easy] 2475. Number of Unequal Triplets in Array (0) | 2023.05.04 |