File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public static void main(String[] args) {
14
14
min_index = j ;
15
15
}
16
16
}
17
- // 스와프
17
+ // 스와프(
18
18
int temp = arr [i ];
19
19
arr [i ] = arr [min_index ];
20
20
arr [min_index ] = temp ;
@@ -25,4 +25,4 @@ public static void main(String[] args) {
25
25
}
26
26
}
27
27
28
- }
28
+ }
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ public static void main(String[] args) {
6
6
7
7
int [] arr = {3 , 5 };
8
8
9
- // 스와프
9
+ // 스와프(Swap)
10
10
int temp = arr [0 ];
11
11
arr [0 ] = arr [1 ];
12
12
arr [1 ] = temp ;
13
13
14
14
System .out .println (arr [0 ] + " " + arr [1 ]);
15
15
}
16
16
17
- }
17
+ }
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ int n, target;
18
18
vector<int > arr;
19
19
20
20
int main (void ) {
21
- // n(원소의 개수)와 target(찾고자 하는 값)을 입력 받기
21
+ // n(원소의 개수)와 target(찾고자 하는 값)을 입력받기
22
22
cin >> n >> target;
23
- // 전체 원소 입력 받기
23
+ // 전체 원소 입력받기
24
24
for (int i = 0 ; i < n; i++) {
25
25
int x;
26
26
cin >> x;
Original file line number Diff line number Diff line change 7
7
* 전체 기출 문제 풀이에 대한 C++/Java 코드는 2020년 08월 07일까지 모두 업로드 완료됩니다.
8
8
* 책 내용 및 소스코드와 관련한 궁금한 점은 [ Issues] ( https://github.com/ndb796/python-for-coding-test/issues ) 탭을 이용하여 남겨주세요.
9
9
* 책의 오류 사항을 발견하시면
[email protected] 로 보내주시면 감사하겠습니다.
10
- * 이 경우, 원하신다면 [ 정오표] ( /notice.md ) 에 독자님의 이름(혹은 아이디)을 함께 기재해드립니다.
10
+ * 이 경우, 원하신다면 < b > [ 정오표] ( /notice.md ) </ b > 에 독자님의 이름(혹은 아이디)을 함께 기재해드립니다.
11
11
* 이 책을 이용해 강의를 진행하시는 교수/선생님/강사/동아리장 님들을 위해 강의용 PPT를 제공합니다. (준비중)
12
12
* 전체 동영상 강의는 2020년 8 ~ 9월에 걸친 유튜브 라이브 강의를 진행하고 편집 후에 업로드 될 예정입니다.
13
13
* 책 구매 링크: [ 한빛미디어] ( http://hanbit.co.kr/store/books/look.php?p_code=B8945183661 ) / [ YES24] ( http://www.yes24.com/Product/Goods/91433923 ) / [ 교보문고] ( http://www.kyobobook.co.kr/product/detailViewKor.laf?barcode=9791162243077 ) / [ 알라딘] ( https://www.aladin.co.kr/shop/wproduct.aspx?ISBN=K342631735 )
You can’t perform that action at this time.
0 commit comments