leetcode:1309. 解碼字母到整數映射(c++)

這種映射題目的一種想法是找到它和初值的差距,而後與初值加和便可。web class Solution { public: string freqAlphabets(string s) { int map = 96; // a前面一個數的ascii碼 string res; // 結果字符串 for(int i = 0; i <
相關文章
相關標籤/搜索