Interview Guides
Given a string s representing source code text, return True if every C-style block comment opener /* is matched by a later closer */ and comments do not overlap incorrectly; otherwise return False. Ignore line comments and all other syntax. The function should scan the string left to right and prioritize correctness on malformed input.
0 <= len(s) <= 10^5s consists of ASCII characters/* and */ affect validity