배열에서 최솟값 찾기
n = [13,6,9,8,12] def min(array, com): # array의 비교할 것이 남아있지 않다면, if not array: # com을 넘기면서 프로그램을 종료한다. return com # 배열의 첫번째를 now로 선언. now = array[0] # now가 com보다 작다면, if now < com: # 배열의 첫번째수가 비교하는 수보다 작으면, now를 com로 대체한다. return min(array[1:], now) # now가 com보다 작지 않다면, else: # 배열의 첫번째가 비교하는 수보다 작지 않다면, com을 유지한다. return min(array[1:], com) print(min(n, n[0])) 해당 함수의 시간복잡도는 배열의 길이의 비례만큼 실행되기 때문에..
2023. 8. 7.
Awesome-Computer Vision Detection paper
Rich feature hierarchies for accurate object detection and semantic segmentation, 2014, CVPR, Oral, Paper Fast R-CNN, 2015, ICCV, Oral, Paper Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks, 2015, NIPS, Paper You Only Look Once: Unified, Real-Time Object Detection, 2016, CVPR, Oral, Paper SSD: Single Shot MultiBox Detector, 2016, ECCV, Oral, Paper Training Region-b..
2023. 8. 7.