From 9137b94bf7566c22374c9bbd3c05c433d4e7d3cd Mon Sep 17 00:00:00 2001 From: Lam Haoyin Date: Tue, 22 Feb 2022 00:32:54 +0800 Subject: [PATCH] add: warning message (please help) --- csharp/Feb22/cn-0221/Program.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/csharp/Feb22/cn-0221/Program.cs b/csharp/Feb22/cn-0221/Program.cs index 3e2c0e9..0855200 100644 --- a/csharp/Feb22/cn-0221/Program.cs +++ b/csharp/Feb22/cn-0221/Program.cs @@ -1,5 +1,12 @@ namespace cn_0221; +/** + * Warning: + * This solution, written in C#, does not work at all (TLE). + * However, a exact re-implement in C++ did passed all test cases. + * I'm not sure why. + */ + public class Solution { public string PushDominoes(string dominoes) { var q = new Queue();