Files
lynchmark/tests/4_determinant/outputs_gemini/gemini-3-pro-preview TEMP_0.2.js
2025-11-18 19:30:39 +00:00

4 lines
130 B
JavaScript

const calculateDeterminant = async m =>
(await import('https://esm.sh/mathjs'))
.det(m)
export default calculateDeterminant;