华勤到底建不建议去?

华勤oc,9月份目前只拿了这个offer,现在就要求签约,听说加班非常严重,研发每个月加班60-80小时,我个人不是很想压力那么大,要不要去啊,还是先签拿个保底。
全部评论
60-80小时都不止吧,听我同学说他师兄在华勤经常加班到凌晨。
6 回复 分享
发布于 2023-09-29 15:14 江西
base哪里的么
4 回复 分享
发布于 2023-10-08 20:21 湖北
全球最大的外包你以为开玩笑的
2 回复 分享
发布于 2023-10-19 09:10 广东
最后一面结束多久有消息呀
点赞 回复 分享
发布于 2023-11-07 10:32 上海
我问hr都说100小时
点赞 回复 分享
发布于 2023-10-25 10:18 陕西
请问终面多久oc的?
点赞 回复 分享
发布于 2023-10-21 14:53 广东
什么岗位呀
点赞 回复 分享
发布于 2023-10-16 10:10 安徽
牛友对这家的评价很差
点赞 回复 分享
发布于 2023-10-13 00:05 浙江
工资给多少啊
点赞 回复 分享
发布于 2023-10-09 23:38 安徽
加班很严重吗?
点赞 回复 分享
发布于 2023-10-07 19:27 浙江
啥岗位啊
点赞 回复 分享
发布于 2023-10-01 10:40 江西
楼主985科班?
点赞 回复 分享
发布于 2023-09-29 14:17 湖北

相关推荐

牛客创作赏金赛
点赞 评论 收藏
分享
07-28 15:15
门头沟学院 Java
面试八股环节还好,但是我是力扣战士,面试官让在编译器上写代码类都不会怎么写了,两个算法,字母异位词和策略模式,只写了方法,力扣战士凉透了,希望大家平时还是要在编译器上做题策略模式等一些设计模式,希望大家也进行默写,别像我一样会背不会写字母异位词import java.util.*;public class Main {public static List<List<String>> groupAnagrams(String[] strs) {// 用于存储分组结果的映射,键为排序后的字符串,值为对应的字符串列表Map<String, List<String>> anagramGroups = new HashMap<>();for (String s : strs) {// 将字符串转换为字符数组并排序char[] chars = s.toCharArray();Arrays.sort(chars);String sortedStr = new String(chars);// 如果映射中不存在该键,则创建一个新的列表anagramGroups.computeIfAbsent(sortedStr, k -> new ArrayList<>());// 将当前字符串添加到对应的列表中anagramGroups.get(sortedStr).add(s);}// 返回映射中的所有值(即所有分组)return new ArrayList<>(anagramGroups.values());}public static void main(String[] args) {// 示例输入String[] strs = {"eat", "tea", "tan", "ate", "nat", "bat"};// 调用方法获取分组结果List<List<String>> result = groupAnagrams(strs);// 输出结果for (List<String> group : result) {System.out.println(group);}}}策略模式// 支付策略接口interface PaymentStrategy {void pay(double amount);}// 微信支付实现class WechatPay implements PaymentStrategy {@Overridepublic void pay(double amount) {System.out.println("使用微信支付:" + amount + "元");// 微信支付具体实现逻辑}}// 支付宝实现class Alipay implements PaymentStrategy {@Overridepublic void pay(double amount) {System.out.println("使用支付宝支付:" + amount + "元");// 支付宝支付具体实现逻辑}}// 银行卡支付实现class BankCardPay implements PaymentStrategy {@Overridepublic void pay(double amount) {System.out.println("使用银行卡支付:" + amount + "元");// 银行卡支付具体实现逻辑}}// 支付上下文(策略持有者)class PaymentContext {private PaymentStrategy strategy;public PaymentContext(PaymentStrategy strategy) {this.strategy = strategy;}public void setStrategy(PaymentStrategy strategy) {this.strategy = strategy;}public void executePayment(double amount) {strategy.pay(amount);}}// 主类和测试代码public class Main {public static void main(String[] args) {// 创建支付上下文PaymentContext context = new PaymentContext(new WechatPay());// 使用微信支付context.executePayment(100.0);// 切换为支付宝支付context.setStrategy(new Alipay());context.executePayment(200.0);// 切换为银行卡支付context.setStrategy(new BankCardPay());context.executePayment(300.0);}}
查看2道真题和解析
点赞 评论 收藏
分享
评论
2
3
分享

创作者周榜

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