Tried a few things but can't seem to get it right any help ?

let times = (...matrices) =>

  matrices.reduce(

    ([a,b,c], [d,e,f]) => [a*d + b*e, a*e + b*f, b*e + c*f]

  );
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to