(defun tictactoe3d ()
'(
((NIL NIL NIL) (NIL NIL NIL) (NIL NIL NIL))
((NIL NIL NIL) (NIL NIL NIL) (NIL NIL NIL))
((NIL NIL NIL) (NIL NIL NIL) (NIL NIL NIL))
))
I need a function that will add a X or a O in the place of a NIL and I need that function to ask the user where he wants to put it. The board game is a tic tac toe 3D (3 boards intead of 1, 27 positions instead of 9). The first line is level 1 (and it is basically the same as having one tic tac toe with 9 positions). How can I add an element to a list like this. I know I have to verify if a position is nil.