有佬江西电信的测评吗?

base:江西省公司和南昌市分公司
bg:211硕
流程:
一面(11.1):面试就聊聊基本情况、是否接受调剂(接受)

收到测评是市公司的测评吗?看往年省公司是没有测评的


后续:12.5,赣州电信发意向
全部评论
收到了 但是我报的省公司呀 不会被调剂了吧
1 回复 分享
发布于 2024-11-14 16:08 重庆
要接吗楼主
点赞 回复 分享
发布于 2024-12-17 08:04 江苏
为啥这测评做完这么久了都没反应
点赞 回复 分享
发布于 2024-11-24 15:12 山东
过去这么久还没消息
点赞 回复 分享
发布于 2024-11-22 20:02 江西
收到测评代表什么吗
点赞 回复 分享
发布于 2024-11-20 11:34 江苏
我收到了,投的南昌市公司,一面问了下项目的几个问题、几个hr题,可能要调回老家。
点赞 回复 分享
发布于 2024-11-14 12:42 江西
我也收到了,是啥情况呀
点赞 回复 分享
发布于 2024-11-14 11:55 广东
可以去小红书看看。
点赞 回复 分享
发布于 2024-11-14 11:51 湖南
收到了,后面还会有面试嘛?
点赞 回复 分享
发布于 2024-11-14 11:50 广东

相关推荐

昨天 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 5 ListNode* 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;        }    }}
点赞 评论 收藏
分享
评论
1
1
分享

创作者周榜

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