| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- BOJ
- greedy
- 알고리즘
- 문제풀이
- Java
- 시뮬레이션
- 코테
- BFS
- 건강
- 코딩테스트
- 문제해결
- 백준
- dfs
- 이분탐색
- 자바
- oracle
- COS PRO
- 러닝일지
- 투포인터
- DP
- MySQL
- binary search
- SQL
- db
- SWEA
- priorityqueue
- 문자열
- 프로그래머스
- 운동기록
- math
- Today
- Total
목록Algorithms/Programmers (88)
슈콩
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/76501 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public int solution(int[] absolutes, boolean[] signs) { int answer = 0; for(int i=0;i
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/86051 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public int solution(int[] numbers) { int answer = 0; boolean[] num = new boolean[10]; for(int i=0;i
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/12928 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public int solution(int n) { int answer = 0; for(int i=1;i
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/86491#qna 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public int solution(int[][] sizes) { int answer = 0; int row = 0; int col = 0; for(int i=0;i
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/87389#qna 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코그]class Solution { public int solution(int n){ int answer = 0; for(int x = 1;x
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/12954 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public long[] solution(int x, int n) { long[] answer = new long[n]; long val = x; for(int i=0;i
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/12944 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public double solution(int[] arr) { double answer = 0; for(int i=0;i
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/12937 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public String solution(int num) { String answer = ""; if(num%2==0) answer = "Even"; else answer = "Odd"; return answer; }}
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/12931 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]import java.util.*;public class Solution { public int solution(int n) { int answer = 0; while(n>0){ answer += n % 10 ; n /= 10; } return answer; }}
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/12932 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public int[] solution(long n) { int[] answer = {}; String s = String.valueOf(n); int len = s.length(); answer = new int[len]; for(int i=0;i