网易雷火交hr面! 求求offer了哭哭

背景:
非科班985双学位+一段大厂实习+一段境外交换经历

时间线:
笔试9.22-10.6
一面10.30
二面11.2
11.6收hr面时间收集
hr面11.7
之后告诉我加了一轮交叉面 暂时取消hr面
三面11.9
11.10收hr电话
hr面11.14 tbc
-
-
-
求求了给个offer吧 雷火真梦中情厂了。。。。
磕头磕头磕头磕头磕头
全部评论
楼主什么岗位呢
点赞 回复 分享
发布于 2023-11-12 22:46 辽宁
请问楼主hr面的时候事先告知你是hr面了嘛,我这四面了,不清楚是不是hr面,有点慌
点赞 回复 分享
发布于 04-20 13:18 江苏
中国电子云
校招火热招聘中
官网直投

相关推荐

09-15 11:05
已编辑
门头沟学院 Java
public class Solution {    public ListNode reverseBetween(ListNode head, int m, int n) {if(head==null)return null;ListNode preHead=new ListNode(0);preHead.next=head;ListNode  head0=head;ListNode head1= head;ListNode tempList=null;ListNode node1=null,node2=null,next=null,pre=null;//当节点为第一个节点时if(m==1)pre=preHead;//循环找到指定的节点的前一个节点for(int i=0; i<m-1; i++){if(i==0)pre=preHead;pre=pre.next;}//找到要反转节点的位置node1=pre.next;ListNode temp=node1;//循环找到要反转的链表的最后一个节点for(int i=0; i<n-m; i++){node2=temp.next;temp= temp.next;}// 分类讨论,当节点m=n时候if(m==n){node2=temp;next=node2.next;node2.next=null;}// m!=n时else{next=node2.next;node2.next=null;}// 调用第一题反转链表的函数tempList=run(node1);// 将前驱节点指向反转链表首部pre.next=tempList;// 找到反转链表的最后一个元素while(tempList.next!=null){tempList=tempList.next;}// 将将反转链表的最后一个元素指向原链表位置的下一个元素tempList.next=next;//返回头节点return  preHead.next;}//反转链表函数public static ListNode run(ListNode head){  if(head==null)            return null;            ListNode reversedHead=null;            ListNode current=head;            ListNode tmp=null;                    while(current!=null){            tmp= current;            current= current.next;            tmp.next=null;            if(reversedHead==null)            reversedHead=tmp;            else{                tmp.next=reversedHead;                reversedHead=tmp;            }                 }            return reversedHead;     }}
投递思源智通等公司10个岗位
点赞 评论 收藏
分享
点赞 1 评论
分享
牛客网
牛客企业服务