首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
我是产品你打我啊
2018-03-25 12:00
New York University 产品经理
关注
已关注
取消关注
百词斩笔试
基本都是原题,一题是求字符串最大数字 一题是summary range,加一句判断是不是小于2, 一题是全排列
提示
全部评论
推荐
最新
楼层
夜深时见你
西安邮电大学 iOS开发
//第一题 #include <stdio.h> #include<iostream> #include<ctime> #include<cstdlib> #include<cmath> using namespace std; int main() { string s; int ans(0),x; cin>>s; for(int i=0;i<s.length();i++) { if(isalpha(s[i])==0) { x=s[i]-'0'; while(isalpha(s[++i])==0 && i<s.length()) x=x*10+s[i]-'0'; if(x>ans)ans=x; } } cout<<ans; return 0; } //第二题 #include<iostream> #include<string> #include<algorithm> using namespace std; int z[10]; int main() { int n; cin>>n; for(int i=0;i<n;i++){ cin>>z[i]; } for(int i=0;i<n;){ if(z[i+1]-1==z[i]){ int cc=i; int num=0; while(z[i+1]-1==z[i]){ num++; i++; } if(num>=2){ if(cc!=0){ cout<<','; } cout<<z[cc]<<'-'<<z[i]; i++; } else { i=cc; if(cc!=0){ cout<<','; } cout<<z[i]; i++; } } else { if(i!=0){ cout<<','; } cout<<z[i]; i++; } } return 0; } //第三题 #include <stdio.h> #include<iostream> #include<ctime> #include<cstdlib> #include<cmath> #include<algorithm> using namespace std; int main() { int n; int a[110]; cin>>n; for(int i=0;i<n;i++) cin>>a[i]; for(int i=0;i<n;i++) cout<<a[i]; cout<<endl; while(next_permutation(a,a+n)) { for(int i=0;i<n;i++) cout<<a[i]; cout<<endl; } return 0; }
点赞
回复
分享
发布于 2018-03-25 13:46
牛客小子22
北京电影学院 Java
第三题 public class test8 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int[] array = new int[n]; for (int i = 0; i < n; i++) { array[i] = scanner.nextInt(); } List<List<Integer>> list = new ArrayList<>(); backtrack(list, new ArrayList<>(), array); for (List<Integer> list2 : list) { for (Integer integer: list2) { System.out.print(integer); } System.out.println(); } } public static void backtrack(List<List<Integer>> list, List<Integer> templist, int[] nums){ if (templist.size() == nums.length) { list.add(new ArrayList<>(templist));// 符合条件的加入进去 } else { for (int i = 0; i < nums.length; i++) { if (templist.contains(nums[i])){ // 这个判断是否包含重复 也是及其精妙啊 continue; } templist.add(nums[i]); backtrack(list, templist, nums); templist.remove(templist.size() - 1); } } } } 第一题 public class test6 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scanner = new Scanner(System.in); String string = scanner.nextLine(); Set<String> set = new HashSet<>(); char[] chars = string.toCharArray(); int l = 0; int r = 0; for (int i = 0; i < string.length(); i++) { while (chars[r] < '0' || chars[r] > '9') { l++; r++; } StringBuilder stringBuilder = new StringBuilder(); while (chars[r] >= '0' && chars[r] <= '9') { stringBuilder.append(chars[r++]); if (r >= string.length()) { break; } } set.add(stringBuilder.toString()); i = r - 1; } int res = Integer.MIN_VALUE; for (String s : set) { res = Math.max(res, Integer.valueOf(s)); } System.out.println(res); } } 第二题 ,有点bug, 只通过了 16%, 没时间调了, public class test7 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int[] array = new int[n]; for (int i = 0; i < n; i++) { array[i] = scanner.nextInt(); } if (array.length == 1) { System.out.println(array[0]); } else if (array.length == 2) { System.out.println(array[0] + "," + array[1]); } else { StringBuilder stringBuilder = new StringBuilder(); for (int i =0; i < array.length; i++) { StringBuilder temp = new StringBuilder(); int start = array[i]; temp.append(start + ""); if ((start + 1) < array.length && array[start + 1] - array[start] > 1) { stringBuilder.append(array[start] + ","); } else { int temprr = Backing(temp, array, start + 1); if (temprr >= 3) { String ssss = array[start] + "-" + array[start + temprr - 1] + ","; stringBuilder.append(ssss); } else { stringBuilder.append(array[start] + ","); } } } System.out.println(stringBuilder.toString()); } } public static int Backing(StringBuilder stringBuilder, int[] array, int start) { stringBuilder.append(array[start] + ""); if ((start + 1) < array.length && array[start + 1] - array[start] > 1) { return stringBuilder.length(); } return Backing(stringBuilder, array, start + 1); } }
点赞
回复
分享
发布于 2018-03-25 12:07
我是产品你打我啊
楼主
New York University 产品经理
import java.util.*; import java.util.*; public class Main{ public static void main(String args[]) { Scanner in = new Scanner(System.in); while (in.hasNext()) { int n=in.nextInt(); int arr[]=new int[n]; for(int i=0;i<n;i++){ arr[i]=in.nextInt(); } ArrayList<ArrayList<Integer>> list=new ArrayList<>(); ArrayList<Integer> Temp=new ArrayList<>(); boolean vis[]=new boolean[n]; get(arr,n,Temp,list,vis); for(int i=0;i<list.size();i++){ System.out.println(trand(list.get(i))); } } } public static String trand(ArrayList<Integer> Temp){ String s=""; for (int i=0;i<Temp.size();i++){ s+=Temp.get(i); } return s; } public static void get(int arr[],int n,ArrayList<Integer> Temp,ArrayList<ArrayList<Integer>> list, boolean[] vis){ if(Temp.size()==n){ list.add(new ArrayList(Temp)); return; } for (int i=0;i<n;i++){ if(vis[i]){ continue; }else { vis[i]=true; Temp.add(arr[i]); get(arr,n,Temp,list,vis); Temp.remove(Temp.size()-1); vis[i]=false; } } } } 第三题
点赞
回复
分享
发布于 2018-03-25 12:11
王大凿
浙江大学 Java
我用js写的 第一题 function findMax(val) { const arr = val.split(''); const reg = /\d+/g; const max = Math.max.apply(Math, val.match(reg)); console.log(max); } 第三题 function main() { for (let i = 0; i < size; i++) { const b = a.concat(); b.splice(b.indexOf(a[i]), 1); pailie(a[i], b); } } function pailie(head, tail) { for (let i = 0; i < tail.length; i++) { if (tail.length === 1) { console.log(head +''+ tail[0]); } else { const b = tail.concat(); b.splice(b.indexOf(tail[i]), 1); pailie(head+''+tail[i], b); } } } 第二题通过33%,惨的不谈
点赞
回复
分享
发布于 2018-03-25 12:18
拉拉的小花狗
西安电子科技大学 前端工程师
弱弱的问一句,什么的原题
点赞
回复
分享
发布于 2018-03-25 12:02
小馒qiu
河南理工大学 前端工程师
是哪的原题?我感觉做的不好,,大神加个好友吧...
点赞
回复
分享
发布于 2018-03-25 12:02
laueker
Tel Aviv University Java
没来得及做,就做了1和3,2刚写了个输入。。。。
点赞
回复
分享
发布于 2018-03-25 12:03
梦境迷离
重庆洪九果品股份有限公司_数据平台开发工程师
第三题刚刚写完,一看时间过了。*** 还没提交
点赞
回复
分享
发布于 2018-03-25 12:04
啊哟嘿
字节跳动_Data-Tns_后台
第二题只过了83%,也不知道哪里错了。
点赞
回复
分享
发布于 2018-03-25 12:07
想ac,想全部ac
大连理工大学 前端工程师
第二题只过了50%
点赞
回复
分享
发布于 2018-03-25 12:09
牛客小子22
北京电影学院 Java
每道题的 分数是不是都是一样的啊 ?
点赞
回复
分享
发布于 2018-03-25 12:11
我是产品你打我啊
楼主
New York University 产品经理
其他两题已经被覆盖了,主要考试懒得写那些Scanner和static ps:
@牛妹
以后考试能不能帮我们把输入写好啊,真的很浪费时间。 第二题: 你们参考summary range 吧。。加一个判断是否两数字相差大于3. 第一题: 就是暴力
点赞
回复
分享
发布于 2018-03-25 12:15
蒟蒻的菜鸡
猿辅导_斑马英语_后台开发
实习生吗?
点赞
回复
分享
发布于 2018-03-25 13:57
wuliji
滴滴出行_增长技术_高级研发工程师
百词斩没有招实习生吧 = =。。。
点赞
回复
分享
发布于 2018-03-25 14:14
黑漠河
华为_软件开发
package com.sort; import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; public class Test1 { public static void main(String[] args) { @SuppressWarnings("resource") Scanner scan = new Scanner(System.in); String str = scan.nextLine(); ArrayList arr = new ArrayList<>(); for(int i = 0 ; i < str.length() ; i ++){ if(!Character.isDigit(str.charAt(i))){ String s = str.replace(str.charAt(i), ' '); str = s; } } String[] ss = str.split(" "); for(String sd : ss){ if(sd!=null){ arr.add(sd); } } Collections.sort(arr); System.out.println(arr.get(arr.size()-1)); } } 第一题
点赞
回复
分享
发布于 2018-03-25 14:31
hopes
重庆邮电大学 Java
- -你们笔试哪里做的
点赞
回复
分享
发布于 2018-03-25 14:48
我们要好好磕盐
电子科技大学 Java
这位大神的代码是正确的,亲测,感谢
点赞
回复
分享
发布于 2018-05-26 15:21
dolphkon
中南民族大学 Java
你好,想问下面的是什么岗位
点赞
回复
分享
发布于 2018-09-06 15:14
还没有回复哦~
相关推荐
11-23 11:10
北京航空航天大学 前端工程师
网易实习四个月体验
上班时间是10点到18点半,中午有两个小时的午休,算下来每天工作也就六个半小时。我所在的组任务量刚刚好,四个月里从来没有加过班。不过听说有些组的同事就没那么幸运,吃饭的时候有哥们说他连续三周都在加班。同事们都特别友好,几乎每周都有免费的下午茶,大家一起聊天,气氛超好。还有,网易严选的员工购物打三折,花了90多块买了300多的东西,很划算
网易公司福利 162人发布
点赞
评论
收藏
分享
11-27 19:02
已编辑
门头沟学院 嵌入式工程师
中国电信面试经验
一面是在线上,主要就是根据简历问问题,大概是8-10分钟,问到了比赛项目、实习经历、成绩这些,还有家庭情况和意向的工作地区,我就按照离家近的说的,要开摄像头。二面是线下,进去有10来个面试官坐在对面,右手边还有两个记录的工作人员,问题我还记得的是:能不能接受调剂到其他地区、对于运营商行业的理解、怎么看待电信的转型。都是比较开放性的线下面试是11.22号,bg是双非硕士,面试是湖北电信
查看3道真题和解析
运营商笔面经互助
点赞
评论
收藏
分享
10-23 11:17
百度_智能客服研发组_Java后端开发(实习员工)
阿里系怎么都这个味一个月了也不面?
走下坡路了
牛客263158796号:
我领羊一面后十天不挂也不推进 今天问hr说等前序的第一批意向发完看情况再看是否推进
点赞
评论
收藏
分享
11-17 01:16
河海大学 Java
26java日常实习简历,求教各位大神指正😖😖😖
点赞
评论
收藏
分享
11-27 11:29
小红书_社区技术部_前端开发(实习员工)
10.30字节一面
【再再再再再再再战字节,摆烂了,这次一面都没过(手撕做出来了前面还有几轮字节面试忘记录音了,就不记录了。1.自我介绍2.主要技术栈是3.是否了解react4.做题【建议下次做这种题目拿个草稿纸!!】 console.log('start'); setTimeout(() => { console.log('children2'); setTimeout(function() { console.log('children8'); }, 0) ; Promise.resolve().then(() => { console.log('chil...
查看16道真题和解析
面经烤面筋
点赞
评论
收藏
分享
评论
点赞成功,聊一聊 >
点赞
11
分享
评论
提到的真题
返回内容
全站热榜
1
...
到了新公司,不要用力过猛
2.2W
2
...
校招两方/三方违约模板
1.4W
3
...
【发帖有奖💰】爆料秋招开奖进展❗
1.3W
4
...
万字长文讲透金融科技方向的就业机会
1.2W
5
...
从露宿街头到百万级种子轮融资②——我的实习期都经历了什么
9480
6
...
听学长的没错
7068
7
...
秋招圆满结束!!
7007
8
...
同事在会议室扇了自己好几个大嘴巴子
6605
9
...
华为开奖,详细时间线
5570
10
...
华为开奖?
5570
正在热议
#
拼多多求职进展汇总
#
233196次浏览
2030人参与
#
在职场上,你最讨厌什么样的同事
#
5704次浏览
81人参与
#
北方华创开奖
#
65976次浏览
549人参与
#
25届秋招总结
#
396126次浏览
3975人参与
#
哪些公司校招卡第一学历
#
32815次浏览
105人参与
#
地方国企笔面经互助
#
6524次浏览
16人参与
#
阿里云管培生offer
#
58866次浏览
1748人参与
#
ai智能作图
#
21225次浏览
261人参与
#
硬件兄弟们 甩出你的华为奖状
#
77929次浏览
625人参与
#
实习,投递多份简历没人回复怎么办
#
2435521次浏览
34701人参与
#
工作中,你有没有遇到非常爱骂人的领导?
#
4714次浏览
47人参与
#
实习与准备秋招该如何平衡
#
722695次浏览
8551人参与
#
我的实习求职记录
#
6120621次浏览
83950人参与
#
如果再来一次,你还会选择这个工作吗?
#
110289次浏览
1109人参与
#
25届机械人为了秋招做了哪些准备?
#
24978次浏览
355人参与
#
签了三方后想毁约怎么办
#
18554次浏览
111人参与
#
如果你有一天可以担任公司的CEO,你会做哪三件事?
#
9940次浏览
213人参与
#
机械求职避坑tips
#
22142次浏览
240人参与
#
游戏求职进展汇总
#
52726次浏览
344人参与
#
夸夸我的求职搭子
#
132006次浏览
1360人参与
#
腾讯求职进展汇总
#
207522次浏览
1694人参与
#
实习想申请秋招offer,能不能argue薪资
#
35771次浏览
308人参与
牛客网
牛客企业服务