swaaaay
swaaaay
全部文章
分类
未归档(36)
题解(78)
归档
标签
去牛客网
登录
/
注册
swaaaay的博客
TA的专栏
112篇文章
3人订阅
题解-数据结构与算法
47篇文章
677人学习
题解-SQL
29篇文章
478人学习
每天一道面试题
36篇文章
1379人学习
全部文章
(共3篇)
题解 | #字符串分隔#
来自专栏
def get_ans(s): if not s: return None if len(s)==8: return s elif 0<len(s)<8: return add_zero(s) else: li=[] tup...
Python3
字符串
数组
2021-11-18
0
414
题解 | #字符串排序#
来自专栏
def get_ans(que_li): que_li=sorted(que_li) return que_li if __name__=='__main__': import sys lines = [] while True: line ...
Python3
数组
字符串
2021-11-18
0
380
题解 | #计算日期到天数转换#
来自专栏
闰年:能被400整除 or 能被4整除且不能被100整除 def get_ans(year,month,date): year,month,date=int(year),int(month),int(date) month_date1=[31,28,31,30,31,30,31,31...
Python3
字符串
数学
2021-10-25
4
637