首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
牛客727894600号
获赞
12
粉丝
2
关注
0
看过 TA
19
男
北京大学
2024
客户端其它
IP属地:陕西
A learner is a leader !
私信
关注
拉黑
举报
举报
确定要拉黑牛客727894600号吗?
发布(42)
评论
刷题
牛客727894600号
关注TA,不错过内容更新
关注
2021-10-26 21:56
北京大学 客户端其它
题解 | #删除字符串中出现次数最少的字符#
from collections import Counter def my_func(in_string): res = sorted(Counter(in_string).items(), key=lambda x:x[1]) in_string = in_string.replace(res[0][0], "") for i&n...
0
点赞
评论
收藏
分享
2021-10-25 10:51
北京大学 客户端其它
题解 | #顺时针旋转矩阵#
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param mat int整型二维数组 # @param n int整型 # @return int整型二维数组 # class Solution: def rotateMatrix(self , mat: List[List[int]], n: int)&n...
0
点赞
评论
收藏
分享
2021-10-24 11:39
北京大学 客户端其它
题解 | #字符个数统计#
def my_func(in_num): res = set(str(in_num).replace("\n", "")) return len(res) print(my_func(input()))
0
点赞
评论
收藏
分享
2021-10-24 11:34
北京大学 客户端其它
题解 | #提取不重复的整数#
def my_func(num): res = [] for i in str(num)[::-1]: if i not in res: res.append(i)...
0
点赞
评论
收藏
分享
2021-10-24 11:30
北京大学 客户端其它
题解 | #合并表记录#
def my_func(data): res = dict() pairs = data[1:] for i in pairs: ind, ind_value = i.split(" ") &...
0
点赞
评论
收藏
分享
2021-10-24 11:03
北京大学 客户端其它
题解 | #取近似值#
def my_func(num): inte, flo = str(num).split(".") inte = int(inte) if int(flo[0]) >= 5: return inte + 1 &...
0
点赞
评论
收藏
分享
2021-10-23 15:26
北京大学 客户端其它
题解 | #第一个只出现一次的字符#
# -*- coding:utf-8 -*- class Solution: def FirstNotRepeatingChar(self, s): # write code here # 方法一: # for i in rang...
0
点赞
评论
收藏
分享
2021-10-23 14:45
北京大学 客户端其它
题解 | #整数中1出现的次数(从1到n整数中1出现的次数)#
# -*- coding:utf-8 -*- class Solution: def NumberOf1Between1AndN_Solution(self, n): # write code here res = "".join([str(i)&n...
0
点赞
评论
收藏
分享
2021-10-23 14:10
北京大学 客户端其它
题解 | #最小的K个数#
# -*- coding:utf-8 -*- from heapq import nsmallest class Solution: def GetLeastNumbers_Solution(self, tinput, k): # return sorted(tinput, reverse=False)[0:k]  ...
0
点赞
评论
收藏
分享
2021-10-23 13:18
北京大学 客户端其它
题解 | #翻转单词序列#
# -*- coding:utf-8 -*- class Solution: def ReverseSentence(self, s): # write code here return " ".join(reversed([i for&n...
0
点赞
评论
收藏
分享
2021-10-21 21:18
北京大学 客户端其它
题解 | #查找入职员工时间排名倒数第三的员工所有信息#
SELECT emp_no, birth_date, first_name, last_name, gender, hire_date FROM employees ORDER BY hire_date DESC LIMIT 1 OFFSET 2;
0
点赞
评论
收藏
分享
2021-10-20 14:25
北京大学 客户端其它
2021-10-20
在牛客打卡1天,今天学习:刷题 14 道/代码提交 23 次
每日监督打卡
0
点赞
评论
收藏
分享
1
2
3
关注他的用户也关注了:
牛客网
牛客企业服务