-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththree_sum.rb
47 lines (37 loc) · 852 Bytes
/
three_sum.rb
1
2
3
4
5
6
7
8
9
10
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
require 'test/unit'
require 'benchmark'
class ThreeSum
def initialize array=[]
@array = array
@n = (@array.size) -1
end
def count
count = 0
(0..@n).to_a.each do |i|
j = i+1
(j..@n).to_a.each do |j|
k = j+1
(k..@n).to_a.each do |k|
count += 1 if (@array[i] + @array[j] + @array[k] == 0)
end
end
end
return count
end
end
# Check performance
BM_ARRAY = (-10000..10000).map { rand }
Benchmark.bm do |x|
x.report { 50.times do; ThreeSum.new(BM_ARRAY.sample(100)).count(); end }
end
# Test object
class ThreeSumTest < Test::Unit::TestCase
def test_count
arr1 = [-3, -2, -1, 0, 1, 2, 3]
obj = ThreeSum.new(arr1)
assert_equal(5, obj.count())
arr2 = [3, 2, 1, 0, 1, 2, 3]
obj = ThreeSum.new(arr2)
assert_equal(0, obj.count())
end
end