aboutsummaryrefslogtreecommitdiffhomepage
path: root/problems/14-Matrix-Square/testcase_2_float_8x8.rb
blob: b25297995232136c1c1255da578f0f156e16e4b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'matrix'

a = Matrix[
  [3.0, 9.0, 7.0, 5.0, 1.0, 1.0, 0.0, 8.0],
  [6.0, 7.0, 0.0, 9.0, 8.0, 2.0, 1.0, 1.0],
  [3.0, 5.0, 4.0, 2.0, 6.0, 1.0, 2.0, 3.0],
  [4.0, 7.0, 1.0, 5.0, 5.0, 0.0, 6.0, 1.0],
  [0.0, 9.0, 9.0, 8.0, 3.0, 0.0, 6.0, 4.0],
  [1.0, 4.0, 0.0, 9.0, 2.0, 6.0, 3.0, 5.0],
  [5.0, 1.0, 9.0, 7.0, 9.0, 8.0, 5.0, 9.0],
  [0.0, 1.0, 0.0, 3.0, 3.0, 2.0, 8.0, 3.0],
]

puts a**2