byte SIZE = 8; word count; proc solve([*] int hist; int col) void: int i, j, n; n := dim(hist, 1); if col = n then count := count + 1; writeln(); writeln("No. ", count); writeln("-----"); for i from 0 upto n-1 do for j from 0 upto n-1 do write(if j=hist[i] then 'Q' elif (i+j)&1 /= 0 then ' ' else '.' fi) od; writeln() od else for i from 0 upto n-1 do j := 0; while j