fork download
  1. ; your code goes here
  2. (defun board ()
  3. '((T 25 54 89 21 8 36 14 41 96)
  4. (78 47 56 23 5 NIL 13 12 26 60)))
  5.  
  6. (print (board))
  7.  
  8. ;; Function that receives the board and returns the position (i j) where the "T" is. If "T" is not on the board, NIL should be returned.
  9. (defun find-T-position (board)
  10.  
  11. )
  12.  
  13. (print "position : " (find-T-position (board)))
  14.  
  15.  
Success #stdin #stdout 0.01s 9640KB
stdin
Standard input is empty
stdout
((T 25 54 89 21 8 36 14 41 96) (78 47 56 23 5 NIL 13 12 26 60)) 
"position : "