Skip to content

Commit d04b703

Browse files
committed
Adding Simple Solution for Problem - 709 - Lower Case
1 parent 2977a2a commit d04b703

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Lower_Case/SimpleSolution.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
##==================================
2+
## Leetcode
3+
## Student: Vandit Jyotindra Gajjar
4+
## Year: 2020
5+
## Problem: 709
6+
## Problem Name: To Lower Case
7+
##===================================
8+
#
9+
#Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.
10+
#
11+
#Example 1:
12+
#
13+
#Input: "Hello"
14+
#Output: "hello"
15+
#
16+
#Example 2:
17+
#
18+
#Input: "here"
19+
#Output: "here"
20+
#
21+
#Example 3:
22+
#
23+
#Input: "LOVELY"
24+
#Output: "lovely"
25+
class Solution:
26+
def toLowerCase(self, str):
27+
return str.lower() #Using string in-built method - lower() in python

0 commit comments

Comments
 (0)