MCPcopy
hub / github.com/qiyuangong/leetcode / toLowerCase

Method toLowerCase

java/709_To_Lower_Case.java:2–4  ·  view source on GitHub ↗
(String str)

Source from the content-addressed store, hash-verified

1class Solution {
2 public String toLowerCase(String str) {
3 return str.toLowerCase();
4 }
5
6 /*public String toLowerCase(String str) {
7 char[] a = str.toCharArray();

Callers 2

letterCasePermutationMethod · 0.45
mostCommonWordMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected