일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- dfs
- Dynamic Programming
- Lv. 0
- DP
- Python
- 깊이 우선 탐색
- join
- Lv. 3
- softeer
- 프로그래머스
- C언어
- 티스토리챌린지
- 너비 우선 탐색
- 소프티어
- 파이썬
- Java
- programmers
- select
- 오블완
- group by
- bfs
- javascript
- 자바스크립트
- Lv. 2
- level 3
- SQL 고득점 KIT
- LEVEL 2
- 동적계획법
- SQL
- Lv. 1
- Today
- Total
목록분류 전체보기 (410)
몸과 마음이 건전한 SW 개발자
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/181934 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 function solution(ineq, eq, n, m) { const answer = ineq == "
문제 링크 https://www.acmicpc.net/problem/21611 21611번: 마법사 상어와 블리자드 마법사 상어는 파이어볼, 토네이도, 파이어스톰, 물복사버그, 비바라기 마법을 할 수 있다. 오늘 새로 배운 마법은 블리자드이고, 크기가 N×N인 격자에서 연습하려고 한다. N은 항상 홀수이고, ( www.acmicpc.net 정답 코드 import sys input = sys.stdin.readline N, M = map(int, input().split()) blizzard = [list(map(int, input().split())) for _ in range(N)] useMagics = [list(map(int, input().split())) for _ in range(M)] # 처..
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/181938 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 function solution(a, b) { const answer = +(a.toString() + b.toString()) >= 2 * a * b ? +(a.toString() + b.toString()) : 2 * a * b; return answer; }
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/181939 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 function solution(a, b) { const answer = Number(String(a) + String(b)) >= Number(String(b) + String(a)) ? Number(String(a) + String(b)) : Number(String(b) + String(a)); return answer; } 풀이 방법 Number와 String을 사용..
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/181940 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드1 function solution(my_string, k) { const lenMyString = my_string.length; const answer = my_string.padEnd(lenMyString*k, my_string) return answer; } 정답 코드2 function solution(my_string, k) { const lenMyString = m..
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/181942 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 function solution(str1, str2) { const answer = []; const lastIdx = str1.length; for (let idx = 0; idx < lastIdx; idx++) { answer.push(str1[idx]); answer.push(str2[idx]); }; return answer.join(""); }