C++(clang++11) 解法, 执行用时: 4ms, 内存消耗: 360K, 提交时间: 2020-12-30 13:16:28
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param list ListNode类 xxx * @return int整型 */ int hello(ListNode* list) { return 3; } };