Created
August 6, 2021 09:21
-
-
Save oieioi/1b9564ba314b56e24f6a1d311e29c243 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark' | |
time = 100_000_0 | |
ary = [1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,1,2,1] | |
puts "Array#uniq:#{Benchmark.realtime { time.times { ary.uniq } }}" | |
puts "Array#| :#{Benchmark.realtime { time.times { ary | [] } }}" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
uniq の方がほんのちょっとだけ早い。