remove unused file

This commit is contained in:
Jorge Morante 2021-01-03 18:51:01 +01:00
parent b693ddf953
commit 711864d8bd
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
$LOAD_PATH.unshift File.expand_path('./lib/', File.dirname(__FILE__))
require 'fingers'
require 'benchmark'
alphabet = 'asdfghjl'.split('')
Benchmark.bm do |x|
x.report('huffman') { 10_000.times { Huffman.new(alphabet: alphabet, n: 100).generate_hints } }
end