two kinds of digit by Hendrik

using System.Linq;class X{static void Main(){for(int i=9;i++<1e4;)if((i+"").Distinct().Count()==2)System.Console.WriteLine(i);}}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page