
其他小公司面试
文章平均质量分 62
Chole1122
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
random numbers (Expand a random range from 1–5 to 1–7)
Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7.原创 2014-06-23 00:36:37 · 730 阅读 · 0 评论 -
Move all zeroes to end of array
Push all the zero's of a given array to the end of the array. In place only. Ex 1,2,0,4,0,0,8 becomes 1,2,4,8,0,0,0原创 2014-06-23 01:22:30 · 686 阅读 · 0 评论