링크 https://school.programmers.co.kr/learn/courses/30/lessons/181935 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 풀이 짝수와 홀수 부터 구한다. 짝수일때 i가 2이고, i가 n보다 작거나같고, i를 2씩 증가 시킨다. 제곱을 구해야하기때문에 i * i 를 하고 answer 에 += 시킨다. 홀수는 i를 1로 두고 계산하면된다. 2. 코드 class Solution { public int solution(int n) { int answer = 0; if(n % 2 == 0){ for(int i=2..
링크 https://school.programmers.co.kr/learn/courses/30/lessons/181942 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1.풀이 길이가 같은 문자열이므로 둘중하나의 문자열 length() 까지 반복문을 사용한다. charAt 을 사용한다. 2.코드 class Solution { public String solution(String str1, String str2) { String answer = ""; for(int i=0; i
링크 https://school.programmers.co.kr/learn/courses/30/lessons/181943 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 풀이 substring 사용방법 알면 됨 2. 코드 class Solution { public String solution(String my_string, String overwrite_string, int s) { String answer = my_string.substring(0,s) + overwrite_string + my_string.substring(s+overwrite_s..
링크 https://school.programmers.co.kr/learn/courses/30/lessons/147355 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 풀이 p의 길이가 최대 18이기때문에 Long으로 선언함. 2. 코드 class Solution { public int solution(String t, String p) { int answer = 0; Long result_p = Long.parseLong(p); for(int i=0; i= result_t){ answer++; } } return answer; } } 다른사람코드 ..