I am trying to do a function in prolog to add item in a list of list. What I want to do is to add 1 item at the end of the first list, 2 item at the end of the second list, etc.
I wrote this to start:
changerTableau(N,[Ligne|Reste],TableauVide,NouveauTableau):-
repeter(N,'.',Point),
append(Ligne,Point,NouvelleLigne),
append(TableauVide,NouvelleLigne,NouveauTableau),
writeln(N),
N2 is N+1,
writeln(NouveauTableau),
changerTableau(N2,Reste,NouveauTableau,Output).
repeter(0,_,[]):-!.
repeter(N,Item,[Item|Reste]):-
N2 is N - 1,
repeter(N2,Item, Reste).
So what I want the program to do is, if I start with that:
changerTableau(1,[['x','w'],['a','b'],['l','o','l']],[ ],Resultat).
I want to have in output:
Resultat = [['x','w','.'],['a','b','.','.'],['l','o','l','.','.','.']]