From c7de207f0ae1b1c31e0e7836a7162757cb099d8d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 19 Nov 2024 09:25:00 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9D=B4=EC=8A=88=20#329=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 --- ...231\204\354\204\261\354\241\260\352\261\264_1.cpp" | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 "Programmers/\354\202\274\352\260\201\355\230\225\354\235\230_\354\231\204\354\204\261\354\241\260\352\261\264_1.cpp" diff --git "a/Programmers/\354\202\274\352\260\201\355\230\225\354\235\230_\354\231\204\354\204\261\354\241\260\352\261\264_1.cpp" "b/Programmers/\354\202\274\352\260\201\355\230\225\354\235\230_\354\231\204\354\204\261\354\241\260\352\261\264_1.cpp" new file mode 100644 index 0000000..020b027 --- /dev/null +++ "b/Programmers/\354\202\274\352\260\201\355\230\225\354\235\230_\354\231\204\354\204\261\354\241\260\352\261\264_1.cpp" @@ -0,0 +1,11 @@ +#include +#include +#include + +using namespace std; + +int solution(vector sides) { + sort(sides.begin(), sides.end()); + + return sides[0] + sides[1] > sides[2] ? 1 : 2; +} \ No newline at end of file