摘要: 题目描述 解法一 基本思路:直接移动 class Solution { public: string reverseLeftWords(string s, int n) { for(int i = 0; i < n; i++){ int j = 0; int temp = s[0]; for(; j 阅读全文
posted @ 2023-02-28 13:00 盏茶 阅读(13) 评论(0) 推荐(0)