Unbias a random generator: Difference between revisions

→‎{{header|Mathematica}}: Marked incorrect. The task asks for specific output to be shown that is missing.
m (output to pre)
(→‎{{header|Mathematica}}: Marked incorrect. The task asks for specific output to be shown that is missing.)
Line 791:
 
=={{header|Mathematica}}==
{{incorrect|Mathematica|The task asks for specific output to be shown that is missing.}}
<lang Mathematica>randN[n_] := If[Mod[#, 13] == 0, 1, 0] & /@ RandomInteger[13, n]
 
Anonymous user