回复: 4
跳转到指定楼层
上一主题 下一主题
收起左侧

千辛万苦终于又拿到Apple Siri组的offer了(附H1B撕逼过程)

全局:

2017(10-12月) 码农类General 硕士 合同工@apple - 猎头 - 技术电面 在线笔试  | | Pass | 在职跳槽

注册一亩三分地论坛,查看更多干货!

您需要 登录 才可以下载或查看附件。没有帐号?注册账号

x
前面的故事在这里:



先讲Timeline:9.19 中介找到我,问我有没有兴趣做contractor,我说OK,然后开始面了几轮
10.6 第一次拿到offer
10.6-12.4 被告知水果公司方面一直没有给出确切的start date,中间等了两个月

---------------------------------------------------------------
插曲:
由于今年的H1B的形式,被要求Request For Evidence。由于现在的日本公司非常不好,我九月中旬就把所有的材料填完交给老板,但是我十月中旬询问我司NY HQ的HR manager的时候他们居然说没收到。
然而此时我已经拿到第一个offer而且当时他们要我要的很急,希望我两周内能报道。但是我表示我的H1B和offer都很重要,一个都不想丢,所以我让他们给缓一缓,我要现在的公司谈一谈。
现在回想起来应该是当时我司的日本经理故意卡我和另外一个印度小伙伴的材料,拖了一个半月都没交上去,所以这次我直接bypass了我的领导和NY HQ
您好!
本帖隐藏的内容需要积分高于 188 才可浏览
您当前积分为 0。
使用VIP即刻解锁阅读权限或查看其他获取积分的方式
游客,您好!
本帖隐藏的内容需要积分高于 188 才可浏览
您当前积分为 0。
VIP即刻解锁阅读权限查看其他获取积分的方式
Unlock interview details and practice with AI
Curated Interview Questions from Top Companies
OK today 就这么结束了。

12/14 收到offer

总结:不熟的语言真的不要轻易在面试的时候用。我在第二轮面试的时候卡了一下心态就彻底崩了。
正则这个东西真的能临时抱佛脚,不过我还是觉得自己是运气好。
面试的时候多沟通,多和面试官讲思路,然后如果是不熟的语言一定要强调一下。我三轮面试的时候都是一开始就直接问能不能python写,被告知不能之后我就说那我就将就一下吧。


顺便推荐几个网站关于正则的




这几个网站就是我通宵一晚上第二天秒面试官的法宝(逃)


上面几题代码在二楼

评分

参与人数 1大米 +10 收起 理由
chuck1212 + 10 很有用的信息!

查看全部评分


上一篇:G家 OA 題目改了
下一篇:cruise电面
🔗
 楼主| yinda1987 2017-12-15 16:44:33 | 只看该作者
全局:
审核过了,来贴代码了
  1. /* ---------------- interview round 1 ---------------- */

  2. /*
  3. Edmonton — the northernmost big city in North America, known for its cold winters, petrochemical industry and ginormous shopping mall (21 water slides and a triple loop roller coaster) — is growing fast, increasingly youthful, and home to a thriving arts scene, including a sprawling annual fringe festival.
  4. The 52-year-old Citadel Theater, housed in a five-stage glass-and-brick downtown playhouse, tried developing shows for Broadway in its early years. But it largely got out of the game after a series of disappointments, including two plays, “A Life” and “Mister Lincoln,” that transferred in 1980 but then flopped, as well as “Pieces of Eight,” an ambitious musical adaptation of “Treasure Island” that sank at the Citadel in 1985.
  5. */

  6. var str="Edmonton — the northernmost big city in North America, known for its cold winters, petrochemical industry and ginormous shopping mall (21 water slides and a triple loop roller coaster) — is growing fast, increasingly youthful, and home to a thriving arts scene, including a sprawling annual fringe festival. The 52-year-old Citadel Theater, housed in a five-stage glass-and-brick downtown playhouse, tried developing shows for Broadway in its early years. But it largely got out of the game after a series of disappointments, including two plays, “A Life” and “Mister Lincoln,” that transferred in 1980 but then flopped, as well as “Pieces of Eight,” an ambitious musical adaptation of “Treasure Island” that sank at the Citadel in 1985.";

  7. // exact all the words out
  8. var list= str.match(/\w+\b/g);
  9. var map = new Map();
  10. for(var i=0;i<list.length;i++){
  11.     var _temp = list[i].toLowerCase();
  12.     if(map.get(_temp)){
  13.         var n = map.get(_temp)+1;
  14.         map.set(_temp, n);
  15.     }else{
  16.         map.set(_temp, 1);
  17.     }
  18. }

  19. console.log(map);

  20. /* ---------------- interview round 2 ---------------- */

  21. // TO CREATE AN ARRAY CONTAINING THE FLIGHT NUMBERS CONTAINED IN TEXT1 AND TEXT2
  22. // flights = ["UA487", "AF185"]

  23. var text1 = "Hello, thank you for your booking with United Airlines. Your confirmation number is: FDU4OR. Your flight number is 0487. Your ticket number is 974723785."
  24. var text2 = "Thanks for booking on Air France. Your confirmation number is: FDU4OR. Your flight number: 185. Your ticket number is 923785."
  25. var airlineNames_airlineCodes_dataset = {
  26.     "United Airlines": "UA",
  27.     "Air France": "AF",
  28.     "Air China": "CA",
  29.     "JetBlue": "B6"
  30. }

  31. var flights=[];
  32. var airlineReg = /booking (?:with|on) (.*)\. Your confirmation number .* Your flight number(?:\:| is) (\d{3,4})\./;

  33. var result = text1.match(airlineReg);
  34. var r1 = result[1], r2=result[2];
  35. flights.push(airlineNames_airlineCodes_dataset[r1]+r2);

  36. result = text2.match(airlineReg);
  37. r1 = result[1], r2=result[2];
  38. flights.push(airlineNames_airlineCodes_dataset[r1]+r2);

  39. console.log(result[1]);
  40. console.log(result[2]);
  41. console.log(flights);

  42. /* ---------------- interview round 3 ---------------- */
  43. // input: aaabbcddeeefff
  44. // output: a3b2cd2e3f3

  45. // date regex match
  46. // 12-12-2017
  47. // 12/12/2017 17:15
  48. // ...
  49. // return the dates that matches
复制代码

第一轮
回复

使用道具 举报

🔗
laoyujc277 2017-12-15 16:47:04 | 只看该作者
全局:
楼主辛苦,好事多磨
回复

使用道具 举报

🔗
yangshaoxuan 2018-5-17 03:56:57 | 只看该作者
全局:
楼主好,看到你有在申请h1b期间换工作的经历,我对这方面有一些疑问,能加你微信或者邮箱交流一下吗?十分感谢!
回复

使用道具 举报

🔗
yezhengli_mr9 2019-12-19 07:37:40 | 只看该作者
全局:
Contract应该是不sponsor H1B吧?
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号
隐私提醒:
  • ☑ 禁止发布广告,拉群,贴个人联系方式:找人请去🔗同学同事飞友,拉群请去🔗拉群结伴,广告请去🔗跳蚤市场,和 🔗租房广告|找室友
  • ☑ 论坛内容在发帖 30 分钟内可以编辑,过后则不能删帖。为防止被骚扰甚至人肉,不要公开留微信等联系方式,如有需求请以论坛私信方式发送。
  • ☑ 干货版块可免费使用 🔗超级匿名:面经(美国面经、中国面经、数科面经、PM面经),抖包袱(美国、中国)和录取汇报、定位选校版
  • ☑ 查阅全站 🔗各种匿名方法

本版积分规则

>
快速回复 返回顶部 返回列表