首页 > shopee 8.19后端笔试第一道算法题
头像
低头前行之不投OD
编辑于 2020-08-19 17:32
+ 关注

shopee 8.19后端笔试第一道算法题

在本地调试通了代码,但是在考试中一直显示方法名找不到,不知道什么鬼?

先上代码:
public static String main(List list){
    String res="";  for(Object e:list){ if(getType(e).equals("java.lang.String")){
            res=res+e+"\\n";  }else if(getType(e).equals("java.util.ArrayList")){
            res = res+main((List) e);  }
    } return res; } private static String getType(Object o){  return o.getClass().getName(); }

到现在也没搞明白,开始种应该怎么写方法名或者类名???

全部评论

(1) 回帖
加载中...
话题 回帖

相关热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐