Java/프로그래머스 (232) 썸네일형 리스트형 [JAVA] 프로그래머스 - 잘라서 배열로 저장하기 https://school.programmers.co.kr/learn/courses/30/lessons/120913 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr [프로그래머스] 잘라서 배열로 저장하기 - Java (velog.io) [프로그래머스] 잘라서 배열로 저장하기 - Java프로그래머스 잘라서 배열로 저장하기 (Java)velog.io 정답 import java.util.ArrayList;class Solution { public String[] solution(String my_str, int n) { ArrayLi.. [JAVA] 프로그래머스 - 7의 개수 https://school.programmers.co.kr/learn/courses/30/lessons/120912 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 정답 class Solution { public int solution(int[] array) { int answer = 0; String str[] = new String[array.length]; for(int i=0; i 다른 사람의 풀이 class Solution { public int solutio.. [JAVA] 프로그래머스 - 문자열 정렬하기(2) https://school.programmers.co.kr/learn/courses/30/lessons/120911 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 정답 import java.util.*;class Solution { public String solution(String my_string) { StringBuilder answer = new StringBuilder(); my_string = my_string.toLowerCase(); String str[] = m.. [JAVA] 프로그래머스 - 세균 증식 https://school.programmers.co.kr/learn/courses/30/lessons/120910 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 정답 class Solution { public int solution(int n, int t) { int answer = 0; answer = n*(int)Math.pow(2,t); return answer; }} 다른 사람의 풀이 class Solution { public int solution(int n, i.. [JAVA] 프로그래머스 - 제곱수 판별하기 https://school.programmers.co.kr/learn/courses/30/lessons/120909 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 정답 class Solution { public int solution(int n) { int answer = 2; for(int i=0; i 다른 사람의 풀이 class Solution { public int solution(int n) { if (n % Math.sqrt(n) == 0) { retu.. [JAVA] 프로그래머스 - 문자열안에 문자열 코딩테스트 연습 - 문자열안에 문자열 | 프로그래머스 스쿨 (programmers.co.kr) 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 정답 class Solution { public int solution(String str1, String str2) { int answer = 2; if(str1.contains(str2)) { answer = 1; } return answer; }} [JAVA] 프로그래머스 - OX퀴즈 https://school.programmers.co.kr/learn/courses/30/lessons/120907 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 정답 import java.util.ArrayList;class Solution { public String[] solution(String[] quiz) { ArrayList list = new ArrayList(); for(int i=0; i [JAVA] 프로그래머스 - 자릿수 더하기 https://school.programmers.co.kr/learn/courses/30/lessons/120906 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 정답 class Solution { public int solution(int n) { int answer = 0; String str = String.valueOf(n); for(int i=0; i 다른 사람의 풀이 class Solution { public int solution(int n) { .. 이전 1 ··· 7 8 9 10 11 12 13 ··· 29 다음