Skip to main content
9 of 13
added 9 characters in body
Soleil
  • 131
  • 4

c# with 20 bytes (thanks to Lukas Lang)

$"{a.Length}.{a}{b}" 

tio.run

With an explicit lambda:

(a,b) => $"{a.Length}.{a}{b}" 

tio.run lambda

Soleil
  • 131
  • 4