일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- programmers
- dfs
- 동적계획법
- Lv. 1
- DP
- javascript
- Dynamic Programming
- 오블완
- 파이썬
- 소프티어
- 자바스크립트
- level 3
- group by
- 깊이 우선 탐색
- SQL 고득점 KIT
- C언어
- Lv. 2
- 티스토리챌린지
- Lv. 0
- softeer
- select
- join
- LEVEL 2
- 프로그래머스
- Python
- SQL
- Java
- bfs
- Lv. 3
- 너비 우선 탐색
- Today
- Total
목록분류 전체보기 (410)
몸과 마음이 건전한 SW 개발자
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/181948 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); rl.on('close', function () { // 백슬래시를 이스케이프 처리하여 올바른 출력을 생성합니다. console.log("!@#$%^&*..
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/181949 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 1 const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); let input = []; rl.on('line', function (line) { input = [line]; }).on('close',funct..
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/181950 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); let input = []; rl.on('line', function (line) { input = line.split(' '); }).on('close..
문제 링크 https://softeer.ai/practice/7703 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai 정답 코드 const readline = require("readline"); const rl = readline.createInterface({ input: process.stdin, output: process.stdout, }); let numberOfPairs = 0; // 문자열 쌍의 개수 N let currentLine = 0; // 현재 처리 중인 입력 줄 const isValid = ["x", "X"]; const result = []; // 결과를 저장할 배열 rl.on("line", (line, index) => { if (index === 0) {..
문제 링크 https://softeer.ai/practice/7703 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai 정답 코드 import sys input = sys.stdin.readline result = [] N = int(input()) for _ in range(N): left, right = input().split() # 앞 뒤에서 동시에 탐색 # 앞 탐색 lenLeft = len(left) for idx in range(lenLeft): if left[idx] in ("x", "X"): result.append(right[idx].upper()) break if left[lenLeft-idx-1] in ("x", "X"): result.append(right[len..
문제 링크 https://softeer.ai/practice/6257 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai 정답 코드 import sys input = sys.stdin.readline N = int(input()) busStation = list(map(int, input().split())) result = 0 for idx in range(N-1): valueIdx = busStation[idx] isNotPossible = 0 for jdx in range(idx+1, N): valueJdx = busStation[jdx] if valueIdx < valueJdx: isNotPossible += 1 else: result += isNotPossible print(r..