I was wondering this myself so I wrote a script that shows that there are duplicated puzzles if you count a rotated Sudoku as being equivalent. Here's one example:<p>Puzzle 2 is<p><pre><code> 1234
3412
2341
4123
</code></pre>
If you rotate it counterclockwise you have<p><pre><code> 4213
3142
2431
1324
</code></pre>
And if you normalize it, replacing the first row with "1234" (brilliant idea from the post), you get<p><pre><code> 1234
4312
2143
3421
</code></pre>
Which is listed as puzzle 7. A quick check gives me that puzzles 1, 2, 3, 5, 11 and 12 would be unique under rotation, but I wrote that check in five minutes so there <i>must</i> be bugs somewhere. Also, I performed no check for mirror symmetry whatsoever (update: I did a quick one, same result).<p>I don't want to miss my chance to say that the post is brilliant and that it convinced me to leave what I was doing to check for rotations. I was nerd sniped in the best way and I take my hat off for the OP.