From c8fd63b6f27c76606cc476298eadd1987aef09a5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 21 Nov 2024 08:03:42 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9D=B4=EC=8A=88=20#374=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EC=86=94=EB=A3=A8=EC=85=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\275\354\232\260\354\235\230_\354\210\230.cpp" | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 "Programmers/\352\265\254\354\212\254\354\235\204_\353\202\230\353\210\204\353\212\224_\352\262\275\354\232\260\354\235\230_\354\210\230.cpp" diff --git "a/Programmers/\352\265\254\354\212\254\354\235\204_\353\202\230\353\210\204\353\212\224_\352\262\275\354\232\260\354\235\230_\354\210\230.cpp" "b/Programmers/\352\265\254\354\212\254\354\235\204_\353\202\230\353\210\204\353\212\224_\352\262\275\354\232\260\354\235\230_\354\210\230.cpp" new file mode 100644 index 0000000..5c23e69 --- /dev/null +++ "b/Programmers/\352\265\254\354\212\254\354\235\204_\353\202\230\353\210\204\353\212\224_\352\262\275\354\232\260\354\235\230_\354\210\230.cpp" @@ -0,0 +1,15 @@ +#include +#include + +using namespace std; + +int combination(int n, int m) { + if (n == m) return 1; + if (m == 1) return n; + + return combination(n - 1, m - 1) + combination(n - 1, m); +} + +int solution(int balls, int share) { + return combination(balls, share); +} \ No newline at end of file