[프로그래머스] / [Level 1] / [Python] 기사단원의 무기
·
Coding Test/프로그래머스
https://school.programmers.co.kr/learn/courses/30/lessons/136798 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def divisor(num): s = set() for i in range(1, int(num**(1/2))+1): if num % i == 0: s.add(num//i) s.add(i) return len(s) def solution(number, limit, power): answer = 0 for n in range(1, number+1): if divisor(n) > limit: ans..
[프로그래머스] / [Level 1] / [Python] 과일 장수
·
Coding Test/프로그래머스
https://school.programmers.co.kr/learn/courses/30/lessons/135808 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(k, m, score): answer = 0 score.sort(reverse=True) div= len(score)//m for i in range(div): answer += min(score[m*i:m*i+m]) * m return answer
[프로그래머스] / [Level 1] / [Python] 카드 뭉치
·
Coding Test/프로그래머스
https://school.programmers.co.kr/learn/courses/30/lessons/159994 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(cards1, cards2, goal): for g in goal: if len(cards1) > 0 and g == cards1[0]: cards1.remove(g) elif len(cards2) > 0 and g == cards2[0]: cards2.remove(g) else: return "No" else: return "Yes"
[프로그래머스] / [Level 1] / [Python] 명예의 전당 (1)
·
Coding Test/프로그래머스
https://school.programmers.co.kr/learn/courses/30/lessons/138477 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(k, score): answer = [] L = list() for s in score: if len(L) < k: L.append(s) elif min(L) < s: L.remove(min(L)) L.append(s) answer.append(min(L)) return answer
[프로그래머스] / [Level 1] / [Python] 추억 점수
·
Coding Test/프로그래머스
https://school.programmers.co.kr/learn/courses/30/lessons/176963 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(name, yearning, photo): answer = [] D = dict() for key, value in zip(name, yearning): D[key] = value for pt in photo: s = 0 for p in pt: if p not in D.keys(): D[p] = 0 s += D[p] answer.append(s) return answer
[프로그래머스] / [Level 1] / [Python] 콜라 문제
·
Coding Test/프로그래머스
https://school.programmers.co.kr/learn/courses/30/lessons/132267# 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(a, b, n): answer = 0 while n >= a: d, m = divmod(n, a) n = b * d + m answer += d * b return answer
[2023] / [Naver Boostcamp AI Tech] Hand Bone Segmentation
·
Competition
https://github.com/KimGeunUk/Hand-Bone-Segmentation GitHub - KimGeunUk/Hand-Bone-Segmentation: level2_cv_semanticsegmentation-cv-08 created by GitHub Classroom level2_cv_semanticsegmentation-cv-08 created by GitHub Classroom - GitHub - KimGeunUk/Hand-Bone-Segmentation: level2_cv_semanticsegmentation-cv-08 created by GitHub Classroom github.com 목표 사람의 손 뼈 이미지를 입력으로 받아 29개의 서로 다른 종류의 뼈를 분할하는 모델 개발..
[2023] / [Naver Boostcamp AI Tech] Recyclable Waste Object Detection
·
Competition
https://github.com/KimGeunUk/Recyclable-Waste-Object-Detection GitHub - KimGeunUk/Recyclable-Waste-Object-Detection: level2_objectdetection-cv-08 created by GitHub Classroom level2_objectdetection-cv-08 created by GitHub Classroom - GitHub - KimGeunUk/Recyclable-Waste-Object-Detection: level2_objectdetection-cv-08 created by GitHub Classroom github.com 목표 입력 받은 이미지 데이터에서 재활용 쓰레기를 검출하는 모델을 개발합니다...
욱근욱
'분류 전체보기' 카테고리의 글 목록 (23 Page)