Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Java
- memory
- 토이프로젝트
- 타입스크립트
- 프로그래머스
- 협업
- C++
- 알고리즘
- 자료구조
- 일상
- OS
- Redux
- 분할메모리할당
- react
- codeup
- 파이썬
- react-redux
- 백준
- 공부
- CPU 스케줄링
- 스프링
- 정렬
- 기초100제
- error
- web
- 코드업
- Spring
- Operating System
- 리덕스장바구니
- js to ts
Archives
- Today
- Total
감자튀김 공장🍟
[240226] 본문
반응형
OS
1. 가상 메모리란?
2. 임계 구역이란?
3. 상호배제란?
4. Context Switching이란?
1. 배열 값 등수 구하기
score = [1, 66, 78, 100, 35]
sorted_s = sorted(score, reverse=True)
ranks = [sorted_s.index(a) + 1 for a in score]
반응형