class Solution {
public:int hash[200];int longestPalindrome(string s) {for(char ch : s) hash[ch]++;int ret = 0;for(int x : hash) ret += x / 2 * 2;return ret < s.size() ? ret + 1 : ret;}
};
书籍:
《第一行代码 Android》第三版
开发环境:
Android Studio Jellyfish | 2023.3.1
问题:
A launchable activity must be exported as of Android 12, which also makes it available to other apps
新建的activity中的android:exp…