Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solve "우주최강 CRA" 출력하기 #3

Merged
merged 4 commits into from
Mar 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
33 changes: 32 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,32 @@
# Problem-Solving-Study
# Problem Solving Study

## HOW TO? (2019-1)
- 2주에 최소 3문제가 출제됩니다.
-

## HOW TO SUBMIT SOLUTION

#### 1. fork cra16's repository
![forkImage](./images/1.png)
#### 2. clone the forked repository
```
git clone https://github.com/**your username**/Problem-Solving-Study
```
#### 3. add a remote of cra16's repository as name 'upstream'
```
git remote add upstream https://github.com/cra16/Problem-Solving-Study
```
#### 4. fetch the remote
```
git fetch upstream
```
#### 5. merge the upstream's master branch on your origin's master
```
(optional) git checkout master
git merge master upstream/master
```
#### 6. make PR(Pull Request) in github
![PRImage](./images/6.png)

## HOW TO REVIEW OTHER SOLUTION
- comment on PR
8 changes: 0 additions & 8 deletions example/example.py

This file was deleted.

Binary file added images/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions problems/example/21400564.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print('우주최강 전산동아리 CRA')
23 changes: 23 additions & 0 deletions problems/example/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Problem

한동대학교 전산동아리 CRA(Computer Research Association)의 수식어는 우주정복과 우주최강이 있으며,
현재 '우주최강 전산동아리 CRA'라고 자칭(?)하고 있습니다.
**콘솔에 "우주최강 전산동아리 CRA"를 출력하세요.**

# 제한사항

없음

# 입력 설명 및 예제
```
입력값 없음
```
# 출력 설명 및 예제
```
우주최강 전산동아리 CRA
```

# 언어제한
- C/C++
- Java
- Python3