Search found 2 matches

by Seplik
Mon Dec 18, 2017 4:59 am
Forum: Challenges Solved
Topic: Valuation
Replies: 103
Views: 8929

Done in 10 minutes with C#: using System; namespace Valuation { class Program { static void Main(string[] args) { string cipher = "93752xxx746x27x1754xx90x93xxxxx238x44x75xx08750912738x8461x8759383xx328x4x4935903x6x5550360535004x0xx945958961296x267x8842xxx5x6xx61x4x48482x80xxx83316843x7x4x83x95...
by Seplik
Thu Feb 23, 2012 9:57 pm
Forum: Challenges Solved
Topic: The Powers That Be
Replies: 27
Views: 2903

Hi all, this is my solution in C# (.NET 4) using System; using System.Numerics; namespace ThePowerToBe { class Program { static void Main(string[] args) { BigInteger ergebnis = BigInteger.Pow(17, 39 * 11); string tmp = ergebnis.ToString(); for (int i = 0; i < tmp.Length; i++) { if (i % 33 == 0) { Co...