일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 컴퓨터구조
- 운영체제
- c언어개발환경
- C언어
- 모듈구조
- 비순환
- cpu 스케줄링 알고리즘의 비교 분석한 표
- dfs.append(df)
- 디렉터리구조
- 운영체제부팅
- 아나콘다 설치법
- 자바
- 자바예제문제풀이
- 객체지향적접근방법
- 셀레니움 명령어
- CPU
- 보호와보안
- 프로세스제어
- java
- 파일연산
- 데이터적재오류
- 인터럽트처리과정
- c자료구조
- 프로그래머스
- 마이크로터널
- 명품자바
- cpu성능향상
- 파일시스템개요
- 데이터db
- 스케줄링평가기준
- Today
- Total
목록프로그래머스 (2)
aiccstudy Blog
-파이썬 공부 1.올바른 괄호 def is_pair(s): st = list() for c in s: if c == '(': st.append(c) if c == ')': try: st.pop() except IndexError: return False return len(st) == 0# 아래는 테스트로 출력해 보기 위한 코드입니다.print( is_pair("(hello)()"))print( is_pair("()()()")) 2.혼자놀기def solution(cards): answer = [] for i in range(len(cards)..
const rl = readline.createInterface({ input: process.stdin, output: process.stdout}).on('line', function (line) { const [a, b] = line.split(' ') console.log('a =', a) console.log('b =', b)}) const readline = require('readline');const rl = readline.createInterface({ input: process.stdin, output: process.stdout});rl.on('line', function (line) { // 대소문자 변환 const result = ..