> 有关“input”的文章
  • Day56(583, 72)

    Day56(583, 72)

    583. Delete Operation for Two Strings Given two strings word1 and word2, return the minimum number of steps required to make word1 and word2 the s...

    03-22 0 796 文章列表
  • 基础练习 闰年判断

    基础练习 闰年判断

    def is_leap_year(year):if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:print("yes")else:print("no...

    03-21 0 504 文章列表