알고리즘 & 문제/프로그래머스

문제 https://school.programmers.co.kr/learn/courses/30/lessons/142086 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 나의 풀이 import java.util.HashMap; class Solution { public int[] solution(String s) { int sLen = s.length(); int[] answer = new int[sLen]; HashMap map = new HashMap(); for (int i = 0; i < sLen; i++) { char c = s.charAt(i);..
문제 https://school.programmers.co.kr/learn/courses/30/lessons/147355 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 나의 풀이 class Solution { public int solution(String t, String p) { int answer = 0; int pLen = p.length(); for (int i = 0; i < t.length() - pLen + 1; i++) { if (Long.parseLong(t.substring(i, i + pLen))
문제 https://school.programmers.co.kr/learn/courses/30/lessons/150370 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 나의 풀이 import java.util.Arrays; import java.util.HashMap; class Solution { public int[] solution(String today, String[] terms, String[] privacies) { int priLen = privacies.length; int[] answer = new int[priLen]; HashMap ..
태기
'알고리즘 & 문제/프로그래머스' 카테고리의 글 목록 (6 Page)