mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-12 20:40:28 +01:00
8 lines
107 B
C#
8 lines
107 B
C#
|
public class Kata
|
||
|
{
|
||
|
public static string Remove(string s)
|
||
|
{
|
||
|
return s.Replace("!", "") + "!";
|
||
|
}
|
||
|
}
|