Insert Greatest Common Divisors in Linked List - Leetcode 2807 - Linked Lists (Python)

Поділитися
Вставка
  • Опубліковано 16 гру 2024

КОМЕНТАРІ • 7

  • @GregHogg
    @GregHogg  4 місяці тому

    Master Data Structures & Algorithms For FREE at AlgoMap.io!

  • @JoeTan-nq4fq
    @JoeTan-nq4fq 2 місяці тому

    You can implement one liner gcd = lambda a, b: a if not b else gcd(b, a % b).

  • @ivunag
    @ivunag 8 місяців тому

    Hey Greg,
    Great video. Very clear! What is the application you are using to show the linked list and recording your steps?

    • @GregHogg
      @GregHogg  8 місяців тому

      Thank you so much!! I record with obs and I draw with miro

  • @BillyL6
    @BillyL6 3 місяці тому

    I thought they want us to implement the gcd function. but i guess it's okay

  • @Saheryk
    @Saheryk 8 місяців тому

    What? This is medium? I don't believe.

    • @GregHogg
      @GregHogg  8 місяців тому +1

      I don't know why it's medium either. Maybe they want you to implement gcd, but I ain't doing that in a linked list question lol