万万没想到被比亚迪泡池子了

10.15更新
发短信让我更正资料,说我成绩单上的专业和当时填的专业不一样,让我改成电子信息专硕
改完一天没动静了,官网依然 应聘中

timeline
9.15投递简历
过了两天电话面,周末专业面,面了大概四五十分钟
22号发短信要求上传资料
之后就开始了漫长的应聘中
本人本科挂科选手,研究生没挂过,难道因为本科成绩单被人事卡了?

最难崩的是节后面试官微信联系我,问我人事通知我没?
#比亚迪签约#
全部评论
佬,错过东大线下签约时间了,我也是这样
2 回复 分享
发布于 2024-10-11 18:19 江苏
😂😂😂笑死我了,和我一样,本科选手,一天速通线下hr和电话技术面,节前传资料,目前无消息,好在给我offer我也不会去😂
2 回复 分享
发布于 2024-10-11 08:31 吉林
9.30上传资料,也一直没消息
1 回复 分享
发布于 2024-10-11 09:33 山东
看来 不止我一个人 是这种情况啊😹😹
点赞 回复 分享
发布于 2024-10-26 10:22 天津
本科要求不能挂超三门
点赞 回复 分享
发布于 2024-10-21 16:46 湖北
佬,你有消息了吗
点赞 回复 分享
发布于 2024-10-14 16:48 山东
因为错过线下签约了,就没人管你的流程推进了
点赞 回复 分享
发布于 2024-10-11 18:41 山东
最近好像他们校招hr很忙,你面试官问你的话,你可以反过来和他反映下情况,然后让他帮你问问hr
点赞 回复 分享
发布于 2024-10-11 16:54 上海

相关推荐

06-22 22:50
河南大学 C++
//现有一链表的头指针 ListNode* pHead,给一定值x,//编写一段代码将所有小于x的集中于前半部分,大于x的集中于后半部分,//若链表内有x则居于中间,没有则不显示//且不能改变原来的数据相对顺序,返回重新排列后的链表的头指针。//示例 x=5//1 6 2 7 3 5 9 8  (5)-->1 2 3 5 6 7 9 8//1 6 2 7 8 5 9 3  (5)-->1 2 3 5 6 7 8 9//1 2 3 (5)-->1 2 3//6 7 8 (5)--->6 7 8//5 5 5 (5)--->5 5 5ListNode* Partition(ListNode* phead,int x){ListNode* smallhead = NULL;ListNode* smallx = NULL;ListNode* bighead = NULL;ListNode* bigx = NULL;ListNode* flaghead = NULL;ListNode* flagx = NULL;if (phead == NULL)return NULL;while (phead){if (phead->val < x){if (smallhead == NULL){smallx = phead;smallhead = smallx;}else{smallx->next = phead;smallx = smallx->next;}}else if (phead->val > x){if (bighead == NULL){bigx = phead;bighead = bigx;}else{bigx->next = phead;bigx = bigx->next;}}else{if (flaghead == NULL){flagx = phead;flaghead = flagx;}else{flagx->next = phead;flagx = flagx->next;}}phead = phead->next;}if(bigx)bigx->next = NULL;if (flaghead != NULL){if (smallhead == NULL){flagx->next = bighead;return flaghead;}else{smallx->next = flaghead;flaghead->next = bighead;return smallhead;}}else{if (smallhead == NULL){return bighead;}else{smallx->next = bighead;return smallhead;}}}
点赞 评论 收藏
分享
评论
5
2
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务