Potato potage 2024. 2. 28. 15:49
반응형

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]
반응형