OPPO面试记录(一面、二面、HR面)已offer

岗位:语音识别工程师
地点:北京
7月16日 投递简历
8月9日 心理测评
(进入提前批)免笔试
8月16日 专业面试
8月21日 综合面试(虽然是周六,但只有面试官小哥哥自己一个人在办公室,是他按自己时间安排在周六的,OPPO不是大小周,聊得很愉快)
8月25日 HR面(小姐姐很漂亮,很专业,面试内容保密)
9月9日 面试通过 offer排序

11月5日 线上沟通会,发放offer,薪资非常有竞争力,只能忍痛放弃美团白菜了。

已签

#秋招##面试流程##算法工程师##语音技术岗#
全部评论
1 回复 分享
发布于 2021-08-25 20:15
你好,能讲一下综合面试内容吗?感谢
1 回复 分享
发布于 2021-08-25 19:57
楼主二面过后多久收到hr面哇
1 回复 分享
发布于 2021-08-28 13:47
楼主你好 我是今年投的oppo提前批  现在显示的是在排序  想问下排序后要等2个月才有结果吗  排序是后面要和正式批一起横向对比了发offer  还是已经有一部分人拿到了  排序的是备选呢?
点赞 回复 分享
发布于 2022-08-18 16:55 四川
祝lz快快oc,请问一面问啥呀?
点赞 回复 分享
发布于 2021-09-18 18:53
有结果吗?
点赞 回复 分享
发布于 2021-09-01 16:52
许愿offer
点赞 回复 分享
发布于 2021-08-30 16:51
希望快点收到offer
点赞 回复 分享
发布于 2021-08-30 12:13
许愿顺利通过面试
点赞 回复 分享
发布于 2021-08-30 11:23
楼主拿到oc了吗
点赞 回复 分享
发布于 2021-08-28 21:04
同面完,许愿offer,祝楼主早日OC
点赞 回复 分享
发布于 2021-08-25 20:20

相关推荐

03-29 15:49
门头沟学院 Java
第一题过桥,就是最长连续0子序列。import java.util.*;// 注意类名必须为 Main, 不要有任何 package xxx 信息public class Main {    public static void main(String[] args) {        Scanner in = new Scanner(System.in);        int n = in.nextInt();        int[] arr = new int[n];        for (int i = 0; i < n; i++) {            arr[i] = in.nextInt();        }        int juice = 0;        int curLength = 0;        for (int i = 0; i < n; i++) {            if (arr[i] == 0) {                // int cur = arr[i];                int j = i;                while (j < n && arr[j] == 0) {                    j++;                }                curLength = j - i;                juice = Math.max(juice, curLength);            }        }        juice+=1;        System.out.println(juice);    }}第二题分割数组,每一段满足位相加小于k,求最小段数。import java.util.Scanner;public class Main {    public static void main(String[] args) {        Scanner in = new Scanner(System.in);        int n = in.nextInt();   //长度        int k = in.nextInt();   //每段f函数值的上限        int[] arr = new int[n];        for (int i = 0; i < n; i++) {            arr[i] = in.nextInt();        }        int curSum = 0;        int pieces = 0;        for (int i = 0; i < n; i++) {            if (arr[i] > k) {                System.out.println(-1);                return;            }            curSum += arr[i];            if (curSum > k) {                curSum = arr[i];                pieces += 1;            } else {                continue;            }        }        pieces+=1;        System.out.println(pieces);    }}第三题1145子串,先算后缀和再求连续11子串。import java.util.*;// 注意类名必须为 Main, 不要有任何 package xxx 信息public class Main {    public static void main(String[] args) {        Scanner in = new Scanner(System.in);        int n = in.nextInt();        in.nextLine();        String str = in.nextLine();        long[] four_five = new long[n + 2];        int fiveCount = 0;        four_five[n + 1] = 0;        four_five[n] = 0;        for (int i = n - 1; i >= 0; i--) {            if (str.charAt(i) == '5') {                fiveCount += 1;            }            four_five[i] = four_five[i + 1];            if (str.charAt(i) == '4') {                four_five[i] += fiveCount;            }        }        long juice = 0;        for (int i = 0; i < n - 1; i++) {            if (str.charAt(i) == '1' && str.charAt(i + 1) == str.charAt(i)) {                juice += four_five[i + 2];            }        }        juice %= 1000000007;        System.out.println(juice);    }}挺不难的,但是挺多人全a也挂的
查看3道真题和解析 投递OPPO等公司7个岗位
点赞 评论 收藏
分享
评论
2
3
分享

创作者周榜

更多
牛客网
牛客企业服务