Method: Clicoder::Judge#judge
- Defined in:
- lib/clicoder/judge.rb
#judge(file1, file2) ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/clicoder/judge.rb', line 7 def judge(file1, file2) if @options[:decimal] float_judge(file1, file2, 10**(- @options[:decimal])) else diff_judge(file1, file2) end end |