首页 > 编程语言 > 详细

javascript 编程题目

时间:2015-06-12 19:00:07      阅读:219      评论:0      收藏:0      [点我收藏+]

1.you need to find the length of the sequence in an array, between the first and the second occurance of a specified number. /* 你需要找到一个数组中 指定元素 第一次 出现和 第二次 出现中间的  长度。 */ For example, for a given array arr

[0, -3, 7, 4, 0, 3, 7, 9] Finding length between two 7s like

lengthOfSequence([0, -3, 7, 4, 0, 3, 7, 9], 7) would return 5. /* 像这个数组,元素7之间的长度是5. */ For sake of simplicity, there will only be numbers (positive or negative) in the supplied array.

If there are less or more than two occurences of the number to searched for, return 0. /* 为了简便,数组元素只为数字(包括正负),如果指定元素出现频率大于或少于2次,那么返回 0 */

javascript 编程题目

原文:http://www.cnblogs.com/lesbesgusyll/p/4572097.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!