일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 자바스크립트
- React
- 혼공컴운
- 소셜로그인구현
- 알고리즘
- 프로그래머
- db
- 미라클모닝
- 스프링부트
- 프로세스
- 개발자일기
- 자바알고리즘
- 백엔드
- 개발자
- 국비지원
- 자바의정석
- 운영체제
- 리액트
- 프로그래밍
- Codeup
- Java
- 자바
- 코드업
- SpringBoot
- 코딩
- 프로그래머스
- 자바개발자
- 백엔드개발자
- 데이터베이스
- 국비지원코딩
- Today
- Total
목록programmers (2)
초코딩(chocoding)

https://school.programmers.co.kr/learn/courses/30/lessons/42889 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr import java.util.*; class Solution { public int[] solution(int N, int[] stages) { int[] answer = {}; Map stagesM = new HashMap(); for (int i = 0; i < stages.length; i++) { int key = stages[i]; stagesM.put(key, stagesM.getOr..
import java.util.Arrays; class Solution { public int[] solution(String[] name, int[] yearning, String[][] photo) { int[] answer = new int[photo.length]; for (int i = 0; i < photo.length; i++) { for (int j = 0; j < photo[i].length; j++) { for (int k = 0; k < name.length; k++) { if (photo[i][j].equals(name[k])) { answer[i] += yearning[k]; } } } } return answer; } } // class Solution public class P..