add: warning message (please help)

This commit is contained in:
Lam Haoyin 2022-02-22 00:32:54 +08:00
parent 5c8f652039
commit 9137b94bf7
No known key found for this signature in database
GPG Key ID: 8C089CB1A2B7544F
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,12 @@
namespace cn_0221; 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 class Solution {
public string PushDominoes(string dominoes) { public string PushDominoes(string dominoes) {
var q = new Queue<int>(); var q = new Queue<int>();