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

本文共 510 字,大约阅读时间需要 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".

Two Pointers 解法, 注意大小写

1 public class Solution { 2     public String reverseVowels(String s) { 3         StringBuffer res = new StringBuffer(s); 4         int l=0, r=s.length()-1; 5         while (l < r) { 6             while (l

 

转载于:https://www.cnblogs.com/EdwardLiu/p/6096319.html

你可能感兴趣的文章
用php做一个简单的注册用户功能
查看>>
一款基于css3的3D图片翻页切换特效
查看>>
Feign使用Hystrix无效原因及解决方法
查看>>
Sizeof与Strlen的区别与联系
查看>>
hadoop2.2.0_hbase0.96_zookeeper3.4.5全分布式安装文档下载
查看>>
Flutter 贝塞尔曲线切割
查看>>
golang 的编译安装以及supervisord部署
查看>>
easyui源码翻译1.32--Dialog(对话框窗口)
查看>>
阿里架构师,讲述基于微服务的软件架构模式
查看>>
Eclipse导入maven项目时,Pom.xml文件报错处理方法
查看>>
01、JAVA开发准备
查看>>
asp.net mvc 错误处理 - 自定义报错处理,生成错误日志
查看>>
Linux centos ssh
查看>>
R语言之避免for循环示例
查看>>
[转]jQuery 选择器和dom操作
查看>>
Jenkins+Maven+SVN快速搭建持续集成环境(转)
查看>>
bootstrap 媒体查询
查看>>
杜教筛
查看>>
《Ext JS模板与组件基本知识框架图----模板》
查看>>
txmpp
查看>>