CSS outline
outline은 border 바깥에, 요소를 두드러지게 하는, 요소 주변에 그려지는 것이다.outlinebordercontent outline-styleoutline-coloroutline-widthoutline-offsetoutline과 같은 속성이 있다. outline은 border와 다르다. 요소의 border 바깥에 그려지고 컨텐츠를 감쌀 수 있다. 요소의 총 너비와 높이는 outline의 너비에 영향을 받지 않는다. outline-style은 dotted, dashed, solid, double, groove, ridge, inset, outset, none, hidden이 있다. outline color색깔은 name, RGB, Hex, invert 등의 방식으로 설정될 수 있다. p.ex1 ..
프로그래머스 k번째 수
def solution(array, commands): result=[] for command in commands: arr = array arr=arr[command[0]-1:command[1]] arr.sort() result.append(arr[command[2]-1]) return result print(solution([1, 5, 2, 6, 3, 7, 4],[[2, 5, 3],[4, 4, 1], [1, 7, 3]])) https://programmers.co.kr/learn/courses/30/lessons/42748