摘要: 这个题目和 leetcode 171类似。 C++ class Solution { public: string convertToTitle(int columnNumber) { string sb = ""; while (columnNumber > 0) { columnNumber - 阅读全文
posted @ 2024-02-15 19:20 repinkply 阅读(11) 评论(0) 推荐(0)