From 7a0f9d6d8220d74851f590603dac229b4b3e7005 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 13 Oct 2025 06:23:03 -0700 Subject: [PATCH] Feat: Update prompt instructions for LLMs --- tests/4_determinant/test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/4_determinant/test.js b/tests/4_determinant/test.js index 4c7df20..6133e4c 100644 --- a/tests/4_determinant/test.js +++ b/tests/4_determinant/test.js @@ -1,5 +1,7 @@ export default { prompt: ` +// Your goal is to write a production-ready and maintainable JavaScript function. Apply code-golfing practices without sacrificing readability by putting everything on one line. Do not include any comments in your code. +// // Write an async JavaScript function 'calculateDeterminant' that calculates the determinant of a square matrix. // - The function must accept an n x n matrix, represented as an array of arrays. // - You MUST use a dynamic import() to load the 'mathjs' library from a CDN.