Jump to content

Numbers with prime digits whose sum is 13: Difference between revisions

added C# version, translation of Phix
(added C# version, translation of Phix)
Line 46:
22333 22522 23233 23323 23332 25222 32233 32323 32332 33223 33232 33322
52222 222223 222232 222322 223222 232222 322222
</pre>
 
=={{header|C#|CSharp}}==
{{Trans|Phix}}
Same recursive method.
<lang csharp>using System;
using static System.Console;
using LI = System.Collections.Generic.SortedSet<int>;
 
class Program {
 
static LI unl(LI res, LI set, int lft, int mul = 1, int vlu = 0) {
if (lft == 0) res.Add(vlu);
else if (lft > 0) foreach (int itm in set)
res = unl(res, set, lft - itm, mul * 10, vlu + itm * mul);
return res; }
 
static void Main(string[] args) { WriteLine(string.Join(" ",
unl(new LI {}, new LI { 2, 3, 5, 7 }, 13))); }
}</lang>
{{out}}
<pre style="white-space:pre-wrap;">337 355 373 535 553 733 2227 2272 2335 2353 2533 2722 3235 3253 3325 3352 3523 3532 5233 5323 5332 7222 22225 22252 22333 22522 23233 23323 23332 25222 32233 32323 32332 33223 33232 33322 52222 222223 222232 222322 223222 232222 322222
</pre>
 
Cookies help us deliver our services. By using our services, you agree to our use of cookies.