Files
lynchmark/tests/4_determinant/outputs_gemini/gemini-3-pro-preview TEMP_0.4.js
2025-11-18 22:04:41 +00:00

4 lines
133 B
JavaScript

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