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 |
Tags
- Stack
- Number Theory
- 코딩테스트
- geometry
- sorting
- Matrix
- Data Structure
- Counting
- greedy
- Math
- 자바
- simulation
- SQL
- hash table
- 파이썬
- Method
- array
- string
- Binary Tree
- bit manipulation
- 코테
- 구현
- two pointers
- Class
- Binary Search
- implement
- Tree
- dynamic programming
- database
- java
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 배열 원소의 길이 본문
1. Input
1) 문자열 배열 strlist
2. Output
2) 각 원소의 길이를 담은 배열
3. Constraint
1) 1 <= strlist 원소의 길이 <= 100
2) strlist는 알파벳 소문자, 대문자, 특수문자로 이루어져 있다.
4. Example
Input: strlist={“I”,“love”,“muzi”} -> Output: {1,4,4}
5. Code
1) 첫 코드(2022/10/19)
int[] answer = new int[strlist.length];
for(int i=0 ; i<strlist.length ; i++)
answer[i] = strlist[i].length();
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 삼각형의 완성조건 (1) (0) | 2022.10.28 |
---|---|
[프로그래머스/Lv.0] 중복된 문자 제거 (0) | 2022.10.28 |
[프로그래머스/Lv.0] 소인수분해 (0) | 2022.10.27 |
[프로그래머스/Lv.0] 숨어있는 숫자의 덧셈 (1) (0) | 2022.10.27 |
[프로그래머스/Lv.0] 문자열 정렬하기 (1) (0) | 2022.10.27 |