본문 바로가기
CS (컴퓨터 사이언스)/Algorithm (알고리즘)

[알고리즘] 1. 세수중최솟값

by dreamer10457 2023. 11. 25.
반응형
<html>
  <head>
    <meta charset="UTF-8" />
    <title>출력결과</title>
  </head>
  <body>
    <script>
      function solution(a, b, c) {
        return Math.min(a, b, c);
      }

      console.log(solution(2, 5, 1));
    </script>
  </body>
</html>
반응형