首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
我offer呢_
获赞
8
粉丝
1
关注
0
看过 TA
113
门头沟学院
2024
Web前端
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑我offer呢_吗?
发布(5)
评论
刷题
收藏
我offer呢_
关注TA,不错过内容更新
关注
门头沟学院 Web前端
@有胆量的布莱恩要双休:
25届实习
点赞 11
评论 14
0
点赞
评论
收藏
分享
2023-06-16 13:10
门头沟学院 Web前端
题解 | #移除数组中的元素#
{"css":"","js":"function remove(arr, item) {\n return arr.filter(data => data !== item);\n}","html":"","libs":[]}
0
点赞
评论
收藏
分享
2023-01-15 09:17
门头沟学院 Web前端
题解 | #判断一个链表是否为回文结构#
/* * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 the head * @return bool布尔型 */ function isPail(head) { // write code here let arr = []; while (head) { arr.push(head.val); head = head.next; } return ...
0
点赞
评论
收藏
分享
2023-01-14 10:21
门头沟学院 Web前端
题解 | #单链表的排序#
/* * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 the head node * @return ListNode类 */ function sortInList(head) { // write code here let arr = []; while (head) { arr.push(head.val); head = head.next; } ...
0
点赞
评论
收藏
分享
2023-01-14 09:50
门头沟学院 Web前端
题解 | #链表中倒数最后k个结点#
/* * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pHead ListNode类 * @param k int整型 * @return ListNode类 */ function FindKthToTail(pHead, k) { // write code here let list = reverseList(pHead), r...
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务