Introduction to Sorting in Python with sorted, list.sort, and an implementation of insertion sort

Поделиться
HTML-код
  • Опубликовано: 16 ноя 2024

Комментарии • 4

  • @matematleta492
    @matematleta492 3 месяца назад

    Best explanations of these topics anywhere. Thank you.

  • @52abaradabala83
    @52abaradabala83 2 года назад

    Great video as usual, thank you.

  • @1nspireVisi0n
    @1nspireVisi0n Год назад

    Why do you have to create variables with colons? Is it a neccessary requirement for your style for videos or IDE ?🤔 I just find it intruiging!

    • @KrisJordan
      @KrisJordan  Год назад +1

      Explicitly typing variables is a good practice, especially when learning to program or writing larger systems (specifically typing parameters and return types), but it is not required in python. This is a pedagogical choice.