79641332

Date: 2025-05-27 23:39:31
Score: 1
Natty:
Report link

A slightly simpler solution without LINQ:

static String GetNumbers(String input)
    => new String(Array.FindAll(input.ToCharArray(), Char.IsDigit));
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: AlphaOmega