Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- bit manipulation
- java
- implement
- Math
- two pointers
- greedy
- SQL
- Method
- 자바
- Binary Search
- dynamic programming
- Binary Tree
- database
- string
- 코딩테스트
- 파이썬
- Counting
- simulation
- Stack
- hash table
- Number Theory
- Matrix
- 구현
- 코테
- geometry
- Data Structure
- Tree
- sorting
- array
- Class
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 709. To Lower Case 본문
1. Input
1) 문자열 s
2. Output
1) s의 모든 대문자를 소문자로 바꾼 문자열
3. Constraint
1) 1 <= s.length <= 100
2) s는 출력 가능한 ASCII 문자로 구성되어 있다.
4. Example
Input: s=“HI” -> Output: “hi”
5. Code
1) 첫 코드(2022/06/07)
return s.toLowerCase();
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 728. Self Dividing Numbers (0) | 2022.12.06 |
---|---|
[LeetCode/Easy] 724. Find Pivot Index (0) | 2022.12.06 |
[LeetCode/Easy] 693. Binary Number with Alternating Bits (0) | 2022.12.05 |
[LeetCode/Easy] 657. Robot Return to Origin (0) | 2022.12.04 |
[LeetCode/Easy] 598. Range Addition II (0) | 2022.12.04 |