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