코딩테스트8 공배수 https://school.programmers.co.kr/learn/courses/30/lessons/181936 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public int solution(int number, int n, int m) { int answer = 0; if(number % n == 0 && number % m == 0) { answer = 1; }else { answer = 0; } return answer; } } [풀이] class Solution { public int solu.. 코딩테스트/프로그래머스 2023. 9. 14. n의 배수 https://school.programmers.co.kr/learn/courses/30/lessons/181937 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public int solution(int num, int n) { int answer = 0; if(num % n == 0){ answer = 1; }else { answer = 0; } return answer; } } [풀이] class Solution { public int solution(int num, int n) { int answer.. 코딩테스트/프로그래머스 2023. 9. 14. 두 수의 연산값 비교하기 https://school.programmers.co.kr/learn/courses/30/lessons/181938# 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public int solution(int a, int b) { String a_b_str = Integer.toString(a) + Integer.toString(b); int a_b = Integer.valueOf(a_b_str); if(a_b >= 2*a*b){ return a_b; }else{ return 2*a*b; } } } [풀이] .. 코딩테스트/프로그래머스 2023. 9. 14. 더 크게 합치기 https://school.programmers.co.kr/learn/courses/30/lessons/181939 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public int solution(int a, int b) { int answer = 0; String n1 = Integer.toString(a); String n2 = Integer.toString(b); String data1 = n1 + n2; String data2 = n2 + n1; if(data1.compareTo(data2) > 0.. 코딩테스트/프로그래머스 2023. 9. 14. 문자열 곱하기 https://school.programmers.co.kr/learn/courses/30/lessons/181940 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public String solution(String my_string, int k) { String answer = ""; for(int i = 0; i < k; i++){ answer += my_string; } return answer; } } [풀이] class Solution { // 문자열 my_string을 k번 반복하여 이어붙여 반환.. 코딩테스트/프로그래머스 2023. 9. 14. 문자열 리스트를 문자열로 변환 https://school.programmers.co.kr/learn/courses/30/lessons/181941 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public String solution(String[] arr) { String answer = ""; for(int i = 0; i < arr.length; i++){ answer += arr[i]; } return answer; } } [풀이] class Solution { // 문자열 배열의 요소들을 이어붙여서 반환하는 메서드 public .. 코딩테스트/프로그래머스 2023. 9. 14. 문자열 섞기 https://school.programmers.co.kr/learn/courses/30/lessons/181942 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public String solution(String str1, String str2) { String result = ""; for(int i = 0; i < str1.length(); i++){ result += str1.substring(i, i + 1); result += str2.substring(i, i + 1); } return res.. 코딩테스트/프로그래머스 2023. 9. 14. 문자열 겹쳐쓰기 https://school.programmers.co.kr/learn/courses/30/lessons/181943 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public String solution(String my_string, String overwrite_string, int s) { String result = ""; String data_1 = my_string.substring(0,s); String data_2 = my_string.substring(s + overwrite_string.l.. 코딩테스트/프로그래머스 2023. 9. 13. 이전 1 다음