笔试二选一

xdm,路过的帮忙做个选择吧。现在收到两个笔试通知。本人双非硕,一个恒生电子,一个funplus,两个都是13号晚上七点开始。
funplus必须七点十五之前开始,恒生考试时间七点到十点。
funplus感觉做了笔试希望不大,我室友之前投过,做完笔试没动静。恒生感觉希望大点,但我又有侥幸心理,万一funplus真被捞了呢。求求xdm,给点建议吧
全部评论
funplus 不招人
2 回复 分享
发布于 2023-10-12 16:10 北京
哈哈兄弟不会放弃funplus笔试结果去做聚合计算了吧
点赞 回复 分享
发布于 2023-10-13 21:30 重庆
感觉都不大哈哈哈恒生很早做过g了双非硕
点赞 回复 分享
发布于 2023-10-12 14:58 重庆
一样啊兄弟,不过我还有第三个选择,打算实验室聚餐去了😄
点赞 回复 分享
发布于 2023-10-12 09:58 北京
做恒生吧,我funplus已经感谢信了,硕士
点赞 回复 分享
发布于 2023-10-12 09:37 北京
两个点都做不就行了,各1.5小时
点赞 回复 分享
发布于 2023-10-12 09:35 江苏

相关推荐

有大神能教一下菜菜嘛?求二叉树的最小值节点和最大值节点的距离看了答案知道了用lca+depth的方式做,但是我很好奇我为什么是wa呜呜呜package org.example;import java.util.*;public class Solution {/*** 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可*** @param root TreeNode类 树的根节点* @return int整型*/int max = Integer.MIN_VALUE;int min = Integer.MAX_VALUE;public void getMaxMin(TreeNode root){if(root==null){return ;}max =Math.max(max,root.val);min =Math.min(min,root.val);getMaxMin(root.left);getMaxMin(root.right);}Map<TreeNode,Integer> mapmin = new HashMap<>();Map<TreeNode,Integer> mapmax = new HashMap<>();public boolean getparent(TreeNode root,int target,Map<TreeNode,Integer> map){if (root==null){return false;}if(root.val==target){map.put(root,0);return true;}boolean t1 = getparent(root.left,target,map);boolean t2 = getparent(root.right,target,map);if (t1){map.put(root ,map.get(root.left)+1);return true;}else if (t2){map.put(root ,map.get(root.right)+1);return true;}else{return false;}}public int getDis (TreeNode root) {// write code hereTreeNode temp = root;getMaxMin(temp);temp = root;getparent(temp,min,mapmin);temp = root;getparent(temp,max,mapmax);int minpar = Integer.MAX_VALUE;TreeNode targetNode = null;for (TreeNode treeNode : mapmin.keySet()) {if (mapmax.containsKey(treeNode)&&minpar>mapmax.get(treeNode)   ){minpar=mapmax.get(treeNode);targetNode = treeNode;}}return mapmax.get(targetNode) + mapmin.get(targetNode);}}
点赞 评论 收藏
分享
评论
2
1
分享

创作者周榜

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