网易互娱n星计划一直在筛选中是什么情况?

2月底投递的n星暑期实习,游戏运营策划岗,期间变成了笔试,没收到笔试邀请,过些天又变回了筛选中状态。
至今一个多月了还在筛选阶段,看到有的帖子里已经有人收到了面试邀请,想请问一下各位大佬有没有知道我这不挂又面一直筛选中是什么情况😭#网易互娱##实习##春招#
全部评论
我是雷火的一直在筛选中…😥互娱的昨晚才做了笔试
1 回复 分享
发布于 2022-04-16 15:25
我一直都在 笔试中但是没收到笔试邀请😂 雷火的都已经笔试完了
1 回复 分享
发布于 2022-04-09 15:48
我也一直在筛选……
1 回复 分享
发布于 2022-04-08 00:20
楼主有收到二面消息吗,我也是14号一面的,可能一个base?但我不知道是哪个地方
点赞 回复 分享
发布于 2022-04-30 20:52
游戏运营策划没有笔试,直接挑人面试的,一共三面
点赞 回复 分享
发布于 2022-04-27 18:10
校友啊
点赞 回复 分享
发布于 2022-04-18 14:11
我三月份投的,一直没消息,前几天发笔试链接过来了,倒是没遇到筛选情况
点赞 回复 分享
发布于 2022-04-16 09:25
我还在筛选……
点赞 回复 分享
发布于 2022-04-14 23:59
n星貌似只有两轮笔试 错过第一轮的话只能等后面第二轮笔试了
点赞 回复 分享
发布于 2022-04-09 09:33
😭
点赞 回复 分享
发布于 2022-04-06 15:04

相关推荐

04-01 10:06
武汉大学 C++
问问大佬们(1)class ZeroEvenOdd {    private int n;    ReentrantLock lock = new ReentrantLock(true);    private int x = 1;    private boolean isZero = true;    private Condition condition = lock.newCondition();    public ZeroEvenOdd(int n) {                this.n = n;    }    // printNumber.accept(x) outputs "x", where x is an integer.    public void zero(IntConsumer printNumber) throws InterruptedException {        while(x <= n){                    lock.lock();        if(isZero&&x <= n){            printNumber.accept(0);            isZero = false;            condition.signalAll();        }else{            condition.await();        }        lock.unlock();        }    }    public void even(IntConsumer printNumber) throws InterruptedException {        while(x <= n){        lock.lock();        if(!isZero && x%2 == 0){            printNumber.accept(x);            x++;            isZero = true;            condition.signalAll();        }else{            condition.await();        }        lock.unlock();        }           }    public void odd(IntConsumer printNumber) throws InterruptedException {        while(x <= n){        lock.lock();        if(!isZero && x%2 == 1){            printNumber.accept(x);            x++;            isZero = true;            condition.signalAll();        }else{            condition.await();        }        lock.unlock();        }        }}(2)class ZeroEvenOdd {    private final int n;    private int x = 1;    // true: 打印0  false: 不打印0    private boolean isZero = true;    public ZeroEvenOdd(int n) {        this.n = n;    }    public void zero(IntConsumer printNumber) throws InterruptedException {        while (x <= n) {            synchronized (this) {                if (isZero) {                    printNumber.accept(0);                    isZero = false;                    this.notifyAll();                } else {                    this.wait();                }            }        }    }    public void even(IntConsumer printNumber) throws InterruptedException {        while (x <= n) {            synchronized (this) {                if (x % 2 == 0 && !isZero) {                    printNumber.accept(x);                    isZero = true;                    x++;                    this.notifyAll();                } else {                    this.wait();                }            }        }    }    public void odd(IntConsumer printNumber) throws InterruptedException {        while (x <= n) {            synchronized (this) {                if (x % 2 != 0 && !isZero) {                    printNumber.accept(x);                    isZero = true;                    x++;                    this.notifyAll();                } else {                    this.wait();                }            }        }    }}为什么(1)代码最后可能多输出一个0。(2)代码不会
点赞 评论 收藏
分享
评论
1
1
分享

创作者周榜

更多
牛客网
牛客企业服务