4 3 2 1, is the original partition of 10. However, we can have a hidden "0" at the end, making it 4,3,2,1,0 for our use in calculating the partitions of 12.
For 12, we can place two extra 1's into the five existing slots (4 3 2 1 0), in other words five choose two places. Note that five choose two = 10.
At this point the answer seems like 10 but there are two additional cases not counted, which are to place both extra 1's into the same place AND to create 2 new slots at the end instead of one. There are two ways to do so, leaving us with respectively 6,3,2,1 and 4,3,2,1,1,1
So the answer is 10+2 = 12. I was originally kinda stuck but figured it out later.
Idk if this is faster than just listing everything out but its probably more elegant