Java/프로그래머스 (232) 썸네일형 리스트형 [JAVA] 프로그래머스 - 부분 문자열인지 확인하기 https://school.programmers.co.kr/learn/courses/30/lessons/181843 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 class Solution { public int solution(String my_string, String target) { int answer = 0; if(my_string.contains(target)) { answer = 1; } else { answer = 0; } return answer; } } [JAVA] 프로그래머스 - 배열의 원소 삭제하기 https://school.programmers.co.kr/learn/courses/30/lessons/181844 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 import java.util.*; class Solution { public int[] solution(int[] arr, int[] delete_list) { //리스트로 변환 List arrlist = new ArrayList(); List deletelist = new ArrayList(); for(int i=0; i [JAVA] 프로그래머스 - 문자열로 변환 https://school.programmers.co.kr/learn/courses/30/lessons/181845 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 class Solution { public String solution(int n) { String answer = ""; answer = String.valueOf(n); return answer; } } [JAVA] 프로그래머스 - 두 수의 합 https://school.programmers.co.kr/learn/courses/30/lessons/181846 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 import java.math.*; class Solution { public String solution(String a, String b) { String answer = ""; BigInteger A = new BigInteger(a); BigInteger B = new BigInteger(b); BigInteger Sum = A.add(B); answer = Sum.toString(.. [JAVA] 프로그래머스 - 0 떼기 코딩테스트 연습 - 0 떼기 | 프로그래머스 스쿨 (programmers.co.kr) 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 class Solution { public String solution(String n_str) { String answer = ""; int idx = 0; if(n_str.startsWith("0")) { for(int i=0; i [JAVA] 프로그래머스 - 문자열을 정수로 변환하기 https://school.programmers.co.kr/learn/courses/30/lessons/181848 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 class Solution { public int solution(String n_str) { int answer = Integer.parseInt(n_str); return answer; } } [JAVA] 프로그래머스 - 문자열 정수의 합 https://school.programmers.co.kr/learn/courses/30/lessons/181849 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 class Solution { public int solution(String num_str) { int answer[] = new int[num_str.length()]; int sum = 0; for(int i=0; i [JAVA] 프로그래머스 - 정수 부분 https://school.programmers.co.kr/learn/courses/30/lessons/181850 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 class Solution { public int solution(double flo) { int answer = (int)flo; return answer; } } 이전 1 ··· 16 17 18 19 20 21 22 ··· 29 다음