Summarizing my comments above: from the earlier problem asked and given answer, we are able to understand that the question author is intending for order within each pile to not matter and for the piles to be labeled. Due to the nature of this resembling common card games, I will hereby refer to these piles as "hands" to hopefully avoid confusion and the pile labels to be $N,E,S,W$ (the cardinal directions north east south and west).
We are tasked with finding how many ways in which these cards may be distributed to the four distinct players' hands such that each player has 13 cards in their hand (where order within the hand is irrelevant).
We approach via multiplication principle:
- Pick which $13$ cards out of the $52$ cards are given to $N$. There are $\binom{52}{13}$ ways to select the thirteen cards used for $N$ to hold where order of selection doesn't matter.
- Pick which $13$ cards out of the remaining $39$ cards are given to $E$. There are $\binom{39}{13}$ ways to select the thirteen cards for $E$ (noting that depending on the selection made for $N$ the available selections will change for this step, but not the total number of selections)
- Pick which $13$ cards out of the remaining $26$ cards are given to $S$. There are $\binom{26}{13}$ ways to select these
- The final remaining $13$ cards in the deck will be given to $W$. There is only one option available for this step.
Multiplying, we get $\binom{52}{13}\binom{39}{13}\binom{26}{13}=\frac{52!}{13!\color{blue}{39!}}\cdot\frac{\color{blue}{39!}}{13!\color{green}{26!}}\cdot\frac{\color{green}{26!}}{13!13!}=\frac{52!}{(13!)^4}$ different arrangements.
(This can easily be searched using the phrase "number of bridge hands" as bridge is one of the more common card games utilizing thirteen card hands for each of four players from a 52 card deck)
More directly, we could have described this using multinomial coefficients giving the direct answer of $\binom{52}{13,13,13,13}$ which equals the same as above. The multinomial coefficient $\binom{52}{13,13,13,13}$ could be used to describe either the number of arrangements of $13\cdot N's,~13\cdot E's,~13\cdot S's,~13\cdot W's$, and we recognize that each arrangement corresponds to a specific distribution of the cards, or we may more directly recognize the multinomial coefficient as the number of ways of partitioning a set of $52$ distinct objects into four labeled subsets each of size 13.