▸ Lv.1
1. 문자열 내림차순으로 배치하기
2. 부족한 금액 계산하기
3. 문자열 다루기 기본
4. 행렬의 덧셈
▸ Lv.0
5. 평행
💡문제
문자열 s에 나타나는 문자를 큰것부터 작은 순으로 정렬해 새로운 문자열을 리턴하는 함수, solution을 완성해주세요.
s는 영문 대소문자로만 구성되어 있으며, 대문자는 소문자보다 작은 것으로 간주합니다.
▼ 제한 사항
▼ 입출력 예
s | return |
---|---|
"Zbcdefg" | "gfedcbZ" |
▼ 나의 풀이
import java.util.Arrays;
class Solution {
public String solution(String s) {
String answer = "";
char[] charArray = s.toCharArray();
Arrays.sort(charArray);
char[] charReverse = new char[charArray.length];
for(int i = charArray.length-1; i>=0; i--){
charReverse[charArray.length-i-1] = charArray[i];
}
answer = String.valueOf(charReverse);
return answer;
}
}
💡문제
새로 생긴 놀이기구는 인기가 매우 많아 줄이 끊이질 않습니다. 이 놀이기구의 원래 이용료는 price원 인데, 놀이기구를 N 번 째 이용한다면 원래 이용료의 N배를 받기로 하였습니다. 즉, 처음 이용료가 100이었다면 2번째에는 200, 3번째에는 300으로 요금이 인상됩니다.
놀이기구를 count번 타게 되면 현재 자신이 가지고 있는 금액에서 얼마가 모자라는지를 return 하도록 solution 함수를 완성하세요.
단, 금액이 부족하지 않으면 0을 return 하세요.
▼ 제한 사항
▼ 입출력 예
price | money | count | result |
---|---|---|---|
3 | 20 | 4 | 10 |
▼ 나의 풀이
class Solution {
public long solution(int price, int money, int count) {
long answer = 0;
long totalprice = 0;
for (int i = 1; i<=count; i++){
totalprice += price*i;
}
if(money<totalprice){
answer = (long)Math.abs(money - totalprice);
}
return answer;
}
}
💡문제
문자열 s의 길이가 4 혹은 6이고, 숫자로만 구성돼있는지 확인해주는 함수, solution을 완성하세요. 예를 들어 s가 "a234"이면 False를 리턴하고 "1234"라면 True를 리턴하면 됩니다.
▼ 제한 사항
▼ 입출력 예
s | return |
---|---|
"a234" | false |
"1234" | true |
▼ 나의 풀이
class Solution {
public boolean solution(String s) {
boolean answer = true;
char[] array = s.toCharArray();
if (array.length == 4 || array.length == 6){
for (char c : array){
answer = Character.isDigit(c);
if(answer == false){
break;
}
}
} else {
answer = false;
}
return answer;
}
}
💡문제
행렬의 덧셈은 행과 열의 크기가 같은 두 행렬의 같은 행, 같은 열의 값을 서로 더한 결과가 됩니다. 2개의 행렬 arr1과 arr2를 입력받아, 행렬 덧셈의 결과를 반환하는 함수, solution을 완성해주세요.
▼ 제한 조건
▼ 입출력 예
arr1 | arr2 | return |
---|---|---|
[[1,2],[2,3]] | [[3,4],[5,6]] | [[4,6],[7,9]] |
[[1],[2]] | [[3],[4]] | [[4],[6]] |
▼ 나의 풀이
class Solution {
public int[][] solution(int[][] arr1, int[][] arr2) {
int[][] answer = new int[arr1.length][arr1[0].length];
for(int i = 0; i < arr1.length; i++){
for(int j = 0; j < arr1[0].length; j++){
answer[i][j] = arr1[i][j] + arr2[i][j];
}
}
return answer;
}
}
💡문제
점 네 개의 좌표를 담은 이차원 배열 dots가 다음과 같이 매개변수로 주어집니다.
[[x1, y1], [x2, y2], [x3, y3], [x4, y4]]
주어진 네 개의 점을 두 개씩 이었을 때, 두 직선이 평행이 되는 경우가 있으면 1을 없으면 0을 return 하도록 solution 함수를 완성해보세요.
▼ 제한 사항
▼ 입출력 예
dots | result |
---|---|
[[1, 4], [9, 2], [3, 8], [11, 6]] | 1 |
[[3, 5], [4, 1], [2, 4], [5, 10]] | 0 |
▼ 나의 풀이
[오답 코드]
class Solution {
public int solution(int[][] dots) {
int answer = 0;
double slope1 = calculate(dots[0][0], dots[0][1], dots[1][0],dots[1][1]);
double slope2 = calculate(dots[2][0], dots[2][1], dots[3][0], dots[3][1]);
double slope3 = calculate(dots[0][0], dots[0][1], dots[3][0],dots[3][1]);
double slope4 = calculate(dots[2][0], dots[2][1], dots[1][0],dots[1][1]);
double slope5 = calculate(dots[0][0], dots[0][1], dots[2][0],dots[2][1]);
double slope6 = calculate(dots[3][0], dots[3][1], dots[1][0],dots[1][1]);
if (slope1==slope2){
answer = 1;
} else if (slope3==slope4){
answer = 1;
} else if (slope5==slope6){
answer = 1;
}
return answer;
}
public double calculate(int x1, int y1, int x2, int y2){
int minusX = x1-x2;
int minusY = y1-y2;
double slope = (double)minusY/minusX;
return slope;
}
}