TaeJuneJoung / gitblog-comment

깃 블러그 댓글
0 stars 0 forks source link

2020/01/16/algorithm-codility-lesson16-1/ #6

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

Codility] MaxNonoverlappingSegments

Lession16. MaxNonoverlappingSegmentsGreedy algorithmsA 배열에는 시작점이 들어가 있고, B 배열에는 끝점이 들어가 있다. 주어진 갯수만큼 선들이 있으며, 겹치지 않고 가질 수 있는 최대의 갯수를 구하는 문제이다. 해결 소스12345678910111213141516171819def solution(A, B

http://taejunejoung.github.io/2020/01/16/algorithm-codility-lesson16-1/