본문 바로가기
728x90

알고리즘/프로그래머스 1단계42

[프로그래머스] 직사각형 별찍기 프로그래머스 1단계 직사각형 별찍기 https://programmers.co.kr/learn/challenges 문제 설명 풀이 import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); for(int i = 0; i 2022. 4. 24.
[프로그래머스] 자연수 뒤집어 배열로 만들기 프로그래머스 1단계 자연수 뒤집어 배열로 만들기 https://programmers.co.kr/learn/challenges 문제 설명 풀이 class Solution { public int[] solution(long n) { String number = String.valueOf(n); String numbers[] = number.split(""); int answer[] = new int[numbers.length]; for(int i=0; i 2022. 4. 24.
[프로그래머스] 숫자 문자열과 영단어 프로그래머스 1단계 숫자 문자열과 영단어 https://programmers.co.kr/learn/challenges 문제 설명 풀이 class Solution { public int solution(String s) { String[] numbers = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}; for (int i = 0; i < numbers.length; i++) { s = s.replaceAll(numbers[i], Integer.toString(i)); } return Integer.parseInt(s); } } 2022. 4. 24.
[프로그래머스] 행렬의 덧셈 프로그래머스 1단계 행렬의 덧셈 https://programmers.co.kr/learn/challenges 문제 설명 풀이 class Solution { public int[][] solution(int[][] arr1, int[][] arr2) { int[][] answer = new int[arr1.length][arr1[0].length]; for(int i=0; i 2022. 4. 24.
728x90