about summary refs log tree commit diff stats
path: root/awk
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-06-26 22:42:27 -0400
committerelioat <elioat@tilde.institute>2024-06-26 22:42:27 -0400
commit32565587802cc2052d3b83a825eef9df606e9a4f (patch)
tree107a3b1344e3dd840fe9f1725c875de500f6a375 /awk
parentd0cef1a0eb1b47acfdb281b9a6d78c461216d53d (diff)
downloadtour-32565587802cc2052d3b83a825eef9df606e9a4f.tar.gz
*
Diffstat (limited to 'awk')
-rw-r--r--awk/nqueens.awk6
1 files changed, 3 insertions, 3 deletions
diff --git a/awk/nqueens.awk b/awk/nqueens.awk
index a426537..423e71e 100644
--- a/awk/nqueens.awk
+++ b/awk/nqueens.awk
@@ -1,12 +1,12 @@
 # Check if a position is safe for a queen
 function is_safe(board, row, col, N) {
     for (i = 1; i < row; i++) {
-        # Check column and diagonals
+        # Check if there is a queen in the same column or diagonals as the current position
         if (board[i] == col || board[i] - i == col - row || board[i] + i == col + row) {
-            return 0
+            return 0  # Oh no! Not safe! There is a queen attacking the current position
         }
     }
-    return 1
+    return 1  # Safe! No queens
 }
 
 # Print the board configuration