博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode : Reverse Vowels of a String
阅读量:5334 次
发布时间:2019-06-15

本文共 400 字,大约阅读时间需要 1 分钟。

Write a function that takes a string as input and reverse only the vowels of a string.

Example 1:

Given s = “hello”, return “holle”.

Example 2:

Given s = “leetcode”, return “leotcede”.

Note:

The vowels does not include the letter “y”.

class Solution {public:    string reverseVowels(string s) {        vector
ch; for(int i=0;i

转载于:https://www.cnblogs.com/chankeh/p/6850087.html

你可能感兴趣的文章
ubuntu16下面 redis 无法链接到客户端问题
查看>>
android下实现4分屏播放4路高清h264格式的rtsp流
查看>>
[计算机网络] vsftpd的安装与使用
查看>>
【源代码】LinkedList源代码分析
查看>>
Cocostudio学习笔记(4) LoadingBar+ TextField
查看>>
cxf和jboss eap 6.2版本号冲突
查看>>
ORACLE触发器具体解释
查看>>
IOS开发之SVN的使用
查看>>
Python学习之元组
查看>>
第三次作业
查看>>
quartz多任务调度+spring 实现
查看>>
Codeforces 97.B Superset
查看>>
noip2008 笨小猴
查看>>
洛谷P1459 三值的排序 Sorting a Three-Valued Sequence
查看>>
学习layer和laydate的官方文档
查看>>
JAVA 之 GC 二
查看>>
less
查看>>
深度学习激活函数们
查看>>
极其平凡的一天——3.19
查看>>
12306购票
查看>>