Congratulations to Untamos for the FTF
** The cache is not located at the posted coordinates but is within 1km **
public string Convert(string input)
{
const string alphabet = "0123456789abcdefghijklmnopqrstuvwxyz";
var dividend = new BigInteger(Encoding.UTF8.GetBytes(input));
var builder = new StringBuilder();
while (dividend > 0)
{
BigInteger remainder;
dividend = BigInteger.DivRem(dividend, 36, out remainder);
builder.Insert(0, alphabet[((int)remainder)]);
}
return builder.ToString();
}
Output: nqfv2zxjbeczhs4mwm1wp4bnk35g6879x4oytbo9dfy
** Please bring your own pen **