Permutation vs Combination & BASEBALL GAME
출처 : http://blog.naver.com/PostView.nhn?blogId=bb_&logNo=221338611903&parentCategoryNo=&categoryNo=67&viewDate=&isShowPopularPosts=false&from=sectionhttps://onsil-thegreenhouse.github.io/programming/algorithm/2018/04/05/permutation_combination/ 순열과 조합은 다르다. 예를 들어 int 배열은 {1, 2, 3, 4, 4, 3, 2, 1, 1}, 그리고 선택 개수는 3이라고 하자. 조합(Combination)하는 경우의 수 : 2,3,41,3,41,2,41,2,3 순열(Permutation)하는 경우의 수 : 2,3,..