博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] 709. To Lower Case
阅读量:5780 次
发布时间:2019-06-18

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

Problem

Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.

Example 1:

Input: "Hello"

Output: "hello"
Example 2:

Input: "here"

Output: "here"
Example 3:

Input: "LOVELY"

Output: "lovely"

Solution

class Solution {    public String toLowerCase(String str) {        char[] chs = str.toCharArray();        for (int i = 0; i < chs.length; i++) {            char ch = chs[i];            if ((int)ch >= 65 && (int)ch <= 90) chs[i] += 32;        }        return new String(chs);    }}//a: 97, z: 122//A: 65, Z: 90

转载地址:http://rvuyx.baihongyu.com/

你可能感兴趣的文章
JavaWeb实例设计思路(订单管理系统)
查看>>
source insight中的快捷键总结
查看>>
PC-IIS因为端口问题报错的解决方法
查看>>
java四种线程池简介,使用
查看>>
一般处理程序(.ashx)中session的使用方法
查看>>
EasyUI笔记(二)Layout布局
查看>>
ios View之间的切换 屏幕旋转
查看>>
typedef BOOL(WINAPI *MYFUNC) (HWND,COLORREF,BYTE,DWORD);语句的理解
查看>>
jsp 特殊标签
查看>>
[BZOJ] 1012 [JSOI2008]最大数maxnumber
查看>>
gauss消元
查看>>
多线程-ReentrantLock
查看>>
数据结构之链表与哈希表
查看>>
IIS7/8下提示 HTTP 错误 404.13 - Not Found 请求筛选模块被配置为拒绝超过请求内容长度的请求...
查看>>
http返回状态码含义
查看>>
响应式网站对百度友好关键
查看>>
洛谷P2179 骑行川藏
查看>>
(十八)js控制台方法
查看>>
VB关键字总结
查看>>
虚拟机类加载机制
查看>>