Today I decided that I needed some practice in order to become more familiar with Young tableaux. I have the following piece of code -which returns the diagrams that I wanted-
\documentclass[11pt]{article}
%\usepackage{showkeys}
\usepackage{epsfig,amssymb,amsmath,psfrag,hyperref}
\usepackage{mathtools}
\usepackage[dvipsnames]{xcolor}
\usepackage[vcentermath]{youngtab} %Young boxes
\usepackage{ytableau} %Young diagrams
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
Let's do a fun exercise with Young tableaux
\ytableausetup
{mathmode, boxsize=1.75em}
\begin{align}
\begin{aligned}
\begin{ytableau}
\\
\end{ytableau}
&&&
%%%%%%%%%%%%
\begin{ytableau}
1 & \\
2 \\
\none[\vdots] \\
\scriptstyle N-2 \\
\scriptstyle N-1
\end{ytableau}
&&&
%%%%%%%%%%%%
&\begin{ytableau}
1 & & \none[\cdots] & & n \\
\end{ytableau}
&&&
%%%%%%%%%%%%
&\begin{ytableau}
1 \\
2 \\
\none[\vdots] \\
\\
n
\end{ytableau}
\\[30pt]
%%%%%%%%%%%%
\begin{ytableau}
& \\
& \\
\end{ytableau}
&&&
%%%%%%%%%%%%
\begin{ytableau}
& \\
\\
\end{ytableau}
&&&
%%%%%%%%%%%%
&\begin{ytableau}
1 & \\
2 \\
\none[\vdots] \\
\scriptstyle N-3 \\
\scriptstyle N-2
\end{ytableau}
&&&
%%%%%%%%%%%%
\begin{ytableau}
1 & \\
2 & \\
\none[\vdots] \\
\scriptstyle N-3 \\
\scriptstyle N-2
\end{ytableau}
\end{aligned}
\end{align}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}
What I would like to understand is how to create the above but in the following way:
I tried to do this by following some answers and suggestions that I found here, but I failed spectacularly. This is what I tried
\ytableausetup
{mathmode, boxsize=1.75em}
\begin{align}
\begin{aligned}
\begin{ytableau}
\\
\end{ytableau}
&&&
%%%%%%%%%%%%
\left\{
\begin{ytableau}
1 & \\
2 \\
\none[\vdots] \\
\scriptstyle N-2 \\
\scriptstyle N-1
\end{ytableau}
\right.
&&&
%%%%%%%%%%%%
&\begin{ytableau}
1 & & \none[\cdots] & & n \\
\end{ytableau}
&&&
%%%%%%%%%%%%
&\begin{ytableau}
1 \\
2 \\
\none[\vdots] \\
\\
n
\end{ytableau}
\\[30pt]
%%%%%%%%%%%%
\begin{ytableau}
& \\
& \\
\end{ytableau}
&&&
%%%%%%%%%%%%
\begin{ytableau}
& \\
\\
\end{ytableau}
&&&
%%%%%%%%%%%%
&\begin{ytableau}
1 & \\
2 \\
\none[\vdots] \\
\scriptstyle N-3 \\
\scriptstyle N-2
\end{ytableau}
&&&
%%%%%%%%%%%%
\begin{ytableau}
1 & \\
2 & \\
\none[\vdots] \\
\scriptstyle N-3 \\
\scriptstyle N-2
\end{ytableau}
\end{aligned}
\end{align}
Any ideas?

