• Skip to primary navigation
  • Skip to content
  • Skip to footer
Site Title
  • Quick-Start Guide

    Your Name

    I am an amazing person.

    • Somewhere

    최대공약수, 최소공배수

    less than 1 minute read

    def gcd(a, b):
        while b:
            a, b = b, a % b
        return a
    
    def lcm(a, b):
        return a * b // gcd(a, b)
    
    print(gcd(24, 18))  #=> 6
    print(lcm(24, 18))  #=> 72
    

    Updated: April 7, 2022

    Share on

    Twitter Facebook LinkedIn
    Previous Next

    You may also enjoy

    Next.js 작동 방식

    2 minute read

    컴파일

    Next.js

    less than 1 minute read

    API_KEY 숨기기

    리액트 뒤로가기 이벤트

    less than 1 minute read

    부모 컴포넌트 const Parent = () => { const [closeSession, setCloseSession] = useState(false); const closeQuickView = () => { setCloseSession(...

    중복 순열, 주사위 던지기

    less than 1 minute read

    ```py 중복순열 주사위 4개를 던진다 n = 4 path = [0] * 4

    • Follow:
    • Feed
    © 2022 Your Name. Powered by Jekyll & Minimal Mistakes.