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
- Binary Tree
- Class
- array
- Data Structure
- bit manipulation
- dynamic programming
- Math
- 자바
- two pointers
- 코딩테스트
- SQL
- Number Theory
- sorting
- 코테
- greedy
- java
- simulation
- geometry
- 구현
- 파이썬
- Stack
- database
- hash table
- string
- Matrix
- implement
- Method
- Tree
- Counting
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 특수문자 출력하기 본문
1. Input, Output, Example
2. Constraint
없음
3. Code
1) 첫 코드(2023/04/24)
public class Solution {
public static void main(String[] args) {
System.out.print("!@#$%^&*(\\'\"<>?:;");
}
}
- 이스케이프 문자 주의
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 문자열의 뒤의 n글자 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 소문자로 바꾸기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 대소문자 바꿔서 출력하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 문자열 반복해서 출력하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] a와 b 출력하기 (0) | 2023.04.24 |