爱来自联影!

收到联影的offer了!

已经oc了,聊完真的特别开心。这个秋招终于可以画上一个圆满的句号了。

我打算寒假做两件事:

第一,联系我的hrbp,看看能不能提前拿到一些学习资料,比如技术栈介绍、团队常用的工具链。想先自己熟悉起来,免得入职被大佬包围,会拖后腿什么的。

第二,找机会问问有没有机会在正式入职前,和未来的主管或团队里的师兄师姐简单聊一聊。就是想提前了解下当前项目的重点有什么,看看自己现在能提前做哪些准备吧。

和家里人聊的时候,他们倒是很支持我的方向。我爸说行业前景比较稳定,他就很支持我的决定。也因为这样,经验会越来越值钱吧。

希望接下来一切顺利,早点融入团队。如果有同样拿到联影offer的同学,或者已经在联影工作的师兄师姐,欢迎滴滴我呀!很想提前认识一下小伙伴们~

#offer##联影秋招##联影求职进展汇总#
全部评论
请问一下大家都是什么岗位?我是机械工程师。
点赞 回复 分享
发布于 01-23 16:01 湖南
20k吗
点赞 回复 分享
发布于 2025-12-09 16:51 辽宁
滴滴,我也收到啦,上海的工程师,感兴趣私信
点赞 回复 分享
发布于 2025-12-05 22:14 北京
oc了恭喜
点赞 回复 分享
发布于 2025-12-04 18:20 广东
什么岗
点赞 回复 分享
发布于 2025-12-01 15:20 上海

相关推荐

大致就是完善一个购物车,结算购物车金额的题,极其简单,但是我测试用例只过了50%代码如下,哪个大佬能帮忙看看问题import java.math.BigDecimal;import java.math.RoundingMode;import java.util.*;class Solution {// 购物车集合public Map<Product, Integer> cart;public Solution() {cart = new HashMap<>();}public void addProductToCart(Product product, int quantity) {cart.put(product,cart.getOrDefault(product,0)+quantity);}public void removeProduct(Product product) {cart.remove(product);}public String getTotalAmount() {BigDecimal amount =BigDecimal.ZERO;for (Map.Entry<Product, Integer> entry : cart.entrySet()) {String price = entry.getKey().getPrice();Integer quantity = entry.getValue();BigDecimal priceVal = new BigDecimal(price);BigDecimal temp = priceVal.multiply(new BigDecimal(quantity)).setScale(2,RoundingMode.HALF_UP);amount = amount.add(temp);}String totalamount = String.valueOf(amount);return totalamount;}}class Product {private String id;private String name;private String price;public Product(String id, String name, String price) {this.id = id;this.name = name;this.price = price;}public String getId() {return id;}public String getName() {return name;}public String getPrice() {return price;}public static void main(String[] args) {Product product=new Product("1","测试","2");Product product2=new Product("2","测试","2");Solution solution=new Solution();solution.addProductToCart(product,5);solution.addProductToCart(product,2);solution.addProductToCart(product2,1);System.out.println(solution.cart);System.out.println(solution.getTotalAmount());}}
点赞 评论 收藏
分享
评论
8
4
分享

创作者周榜

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