Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래머스
- Java
- 생성
- 넥사크로
- mybatis
- Vue
- kotlin
- 오라클
- 에러
- 방법
- aws
- 알고리즘
- oracle
- Git
- Security
- JavaScript
- IntelliJ
- 쿼리
- db
- 시큐리티
- JPA
- Eclipse
- error
- 함수
- 코틀린
- jquery
- 스프링
- 자바
- Spring
- GitHub
Archives
- Today
- Total
송민준의 개발노트
프로그래머스-level1-수박수박수박수박수? 본문
https://programmers.co.kr/learn/courses/30/lessons/12922
인덱스를 받아와서 그만큼 수박을 출력해주는 문제다. 삼항연산자를 사용하였음.
class Solution {
public String solution(int n) {
String s = "";
for(int i=0; i < n; i++) {
s += (i%2 == 0)? "수":"박" ;
}
return s;
}
}
참고할만한 코드 new String.. new char... replace 후.. substring... 와우
'알고리즘 > 프로그래머스' 카테고리의 다른 글
프로그래머스-level1-모의고사 (0) | 2019.11.03 |
---|---|
프로그래머스-level1-시저 암호 (0) | 2019.11.01 |
프로그래머스-level1-문자열 압축 (0) | 2019.11.01 |
프로그래머스-level1-체육복(탐욕법) (0) | 2019.10.27 |
프로그래머스-완주하지 못한 선수 (0) | 2019.10.26 |