个人资料
  • 博客访问:
正文

两道小题

(2023-04-02 08:04:23) 下一个

1)一百个从1到100的数组中,混进了一个数(也是从1到100),求算法找出 重复的数,并给出最有效的O() complexity,  both time complexity and space complexity。

test case:

input (101个数字): 

1 2 3 4 5 6 7 8 9 10 11 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
 
output:11
 
2) 判断一个数字是不是 2的指数次方
 
test case 1:
input: 64
out put: True
 
test case 2:
input: 48
out put: False
[ 打印 ]
阅读 ()评论 (0)
评论
目前还没有任何评论
登录后才可评论.