728x90 반응형 알고리즘 문제풀이/Programmers - 자바146 프로그래머스 - 직각삼각형 출력하기 import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i=0; i 2023. 3. 5. 프로그래머스 - 세균 증식 class Solution { public int solution(int n, int t) { for(int i=0; i 2023. 3. 5. 프로그래머스 - 문자열 정렬하기 (1) import java.util.ArrayList; import java.util.Comparator; class Solution { public ArrayList solution(String my_string) { ArrayList al = new ArrayList(); for(int i =0; i 2023. 3. 4. 프로그래머스 - 대문자와 소문자 class Solution { public String solution(String my_string) { String answer = ""; for(int i=0; i 2023. 3. 4. 이전 1 ··· 23 24 25 26 27 28 29 ··· 37 다음 728x90 반응형