mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-05 09:39:14 +08:00
16 lines
247 B
Ruby
16 lines
247 B
Ruby
def array_uniq(x)
|
|
large_array = $large_array.dup
|
|
|
|
x.report "uniq" do
|
|
1000.times do
|
|
large_array.uniq
|
|
end
|
|
end
|
|
|
|
x.report "uniq!" do
|
|
1000.times do
|
|
large_array = $large_array.dup
|
|
large_array.uniq!
|
|
end
|
|
end
|
|
end |