My C++ solution for "minimum window substring" runs with correct output on the console testcase window, but fails "Submit".
The solution returns correct ouput on latest Visual Studio.
This code would be incorrect with unicode characters, but all other leetcode problems I have seen assume C-style ascii, with K&R conventional usage.
Wayne