Learn how to write FP code that displays a graphical representation of all the numerous N-Queens solutions for N=4,5,6,7,8 . See how to neatly solve the problem by exploiting its self-similarity and using a divide and conquer approach. Make light work of assembling multiple images into a whole, by exploiting Doodle’s facilities for combining images using a relative layout. See relevant FP functions, like Foldable’s intercalate and intersperse, in action. Code for part 3: https://github.com/philipschwarz/n-queens-combinatorial-problem-scala-part-3