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
- array
- Matrix
- Class
- java
- Number Theory
- database
- bit manipulation
- simulation
- Tree
- sorting
- 코딩테스트
- implement
- greedy
- Data Structure
- Counting
- Binary Tree
- hash table
- 코테
- geometry
- string
- 자바
- SQL
- 구현
- Binary Search
- two pointers
- dynamic programming
- 파이썬
- Math
- Stack
- Method
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1374. Generate a String With Characters That Have Odd Counts 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1374. Generate a String With Characters That Have Odd Counts
무지맘 2023. 4. 11. 16:241. Input
1) int n
2. Output
1) 다음 조건을 만족하는 문자열을 반환
- 문자는 영어 소문자만 사용한다.
- 각 문자가 나오는 횟수는 홀수여야 한다.
- 문자열의 길이는 n이다.
3. Constraint
1) 1 <= n <= 500
2) 조건을 만족하는 문자열이면 어떤 문자열을 반환해도 상관 없다.
4. Example
Input: n = 4 -> Output: "pppz"
Input: n = 2 -> Output: "xy"
5. Code
1) 첫 코드(2023/04/11)
String answer = "";
if(n%2==0){
while(answer.length()<n-1)
answer += 'a';
answer += 'b';
} else{
while(answer.length()<n)
answer += 'a';
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1422. Maximum Score After Splitting a String (0) | 2023.04.12 |
---|---|
[LeetCode/Easy] 1417. Reformat The String (0) | 2023.04.12 |
[LeetCode/Easy] 1360. Number of Days Between Two Dates (0) | 2023.04.11 |
[LeetCode/Medium] 2390. Removing Stars From a String (0) | 2023.04.11 |
[LeetCode/Easy] 1304. Find N Unique Integers Sum up to Zero (0) | 2023.04.11 |