-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[level 0] Title: 특수문자 출력하기, Time: 13.78 ms, Memory: 7.26 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# [level 0] 특수문자 출력하기 - 181948 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181948) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 7.26 MB, 시간: 13.78 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 코딩 기초 트레이닝 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 06월 12일 11:53:20 | ||
|
||
### 문제 설명 | ||
|
||
<p>다음과 같이 출력하도록 코드를 작성해 주세요.</p> | ||
|
||
<hr> | ||
|
||
<p>출력 예시</p> | ||
<div class="highlight"><pre class="codehilite"><code>!@#$%^&*(\'"<>?:; | ||
</code></pre></div> | ||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
print('!@#$%^&*(\\\'\"<>?:;') |