In this question the asker presents their C++ code which uses a custom linked list data structure (as provided by LeetCode), aiming to sort it.
One commenter writes (I highlight in bold):
Don't just don't try to learn C++ by doing competitive coding. Nobody in their right mind would still use a linked list like that (it is just too easy to make bugs). C++ has
std::list
. My advice leave leetcode alone for a while and first learn C++ e.g. visit learncpp.com. The stackoverflow you see is the result of infinite recursion
This could be just a way of saying "Please don't use a linked list like that", or "professional coders don't use this in business code". But it uses stronger language, and actually suggests that the asker does not belong to the group of people who are in their right mind. Or did they suggest the people that designed this challenge are not in that group? Still, it is also the asker that is using a linked list like that...
Anyway, putting myself in the shoes of the asker, I found it offensive, and flagged it as "It's unfriendly or unkind", but the flag was declined.
Was my sensitivity bar set too high, taking this too literally? Is this neither unfriendly nor unkind?