Skip to main content
added 1 character in body
Source Link
TheLethalCoder
  • 7.3k
  • 29
  • 44

C#, 106 97 80 7974 bytes

s=>$@" |\n|  /_\\n_\  |{string.Join("|\n |",s.ToCharArray())}|\n|  |_|\n|_| /___\\n___\  VvV"; 

I don't have C# 6 to try the above but I believe it will work

Saved 7 bytes thanks to Kevin Cruijssen

Thanks to manatwork for pointing me in the right direction to save 17 bytes

Saved 1 byte6 bytes thanks to milk

C#, 106 97 80 79 bytes

s=>$@" |\n /_\\n |{string.Join("|\n |",s.ToCharArray())}|\n |_|\n/___\\n VvV"; 

I don't have C# 6 to try the above but I believe it will work

Saved 7 bytes thanks to Kevin Cruijssen

Thanks to manatwork for pointing me in the right direction to save 17 bytes

Saved 1 byte thanks to milk

C#, 106 97 80 74 bytes

s=>$@" |  /_\  |{string.Join("|\n |",s.ToCharArray())}|  |_| /___\  VvV"; 

I don't have C# 6 to try the above but I believe it will work

Saved 7 bytes thanks to Kevin Cruijssen

Thanks to manatwork for pointing me in the right direction to save 17 bytes

Saved 6 bytes thanks to milk

added 42 characters in body
Source Link
TheLethalCoder
  • 7.3k
  • 29
  • 44

C#, 106 97 8080 79 bytes

s=>$"s=>$@" |\n /_\\\n_\\n |{string.Join("|\n |",s.ToCharArray())}|\n |_|\n/___\\\n___\\n VvV"; 

I don't have C# 6 to try the above but I believe it will work

Saved 7 bytes thanks to Kevin Cruijssen

Thanks to manatwork for pointing me in the right direction to save 17 bytes

Saved 1 byte thanks to milk

C#, 106 97 80 bytes

s=>$" |\n /_\\\n |{string.Join("|\n |",s.ToCharArray())}|\n |_|\n/___\\\n VvV"; 

I don't have C# 6 to try the above but I believe it will work

Saved 7 bytes thanks to Kevin Cruijssen

Thanks to manatwork for pointing me in the right direction to save 17 bytes

C#, 106 97 80 79 bytes

s=>$@" |\n /_\\n |{string.Join("|\n |",s.ToCharArray())}|\n |_|\n/___\\n VvV"; 

I don't have C# 6 to try the above but I believe it will work

Saved 7 bytes thanks to Kevin Cruijssen

Thanks to manatwork for pointing me in the right direction to save 17 bytes

Saved 1 byte thanks to milk

added 68 characters in body
Source Link
TheLethalCoder
  • 7.3k
  • 29
  • 44

C#, 106 9797 80 bytes

using System.Linq;s=>$"s=>$" |\n /_\\\n |{string.Join("""|\n |",s.SelectToCharArray(c=>" |"+c+"|\n"))}|\n |_|\n/___\\\n VvV"; 

I don't have C# 6 to try the above but I believe it will work

Saved 7 bytes thanks to Kevin Cruijssen

Thanks to manatwork for pointing me in the right direction to save 17 bytes

C#, 106 97 bytes

using System.Linq;s=>$" |\n /_\\\n{string.Join("",s.Select(c=>" |"+c+"|\n")} |_|\n/___\\\n VvV"; 

I don't have C# 6 to try the above but I believe it will work

Saved 7 bytes thanks to Kevin Cruijssen

C#, 106 97 80 bytes

s=>$" |\n /_\\\n |{string.Join("|\n |",s.ToCharArray())}|\n |_|\n/___\\\n VvV"; 

I don't have C# 6 to try the above but I believe it will work

Saved 7 bytes thanks to Kevin Cruijssen

Thanks to manatwork for pointing me in the right direction to save 17 bytes

added 1 character in body
Source Link
TheLethalCoder
  • 7.3k
  • 29
  • 44
Loading
Source Link
TheLethalCoder
  • 7.3k
  • 29
  • 44
Loading