Skip to content

Commit 761e511

Browse files
committed
2 parents dc9775e + 63757b3 commit 761e511

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

6/1.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static void main(String[] args) {
1414
min_index = j;
1515
}
1616
}
17-
// 스와프
17+
// 스와프(
1818
int temp = arr[i];
1919
arr[i] = arr[min_index];
2020
arr[min_index] = temp;
@@ -25,4 +25,4 @@ public static void main(String[] args) {
2525
}
2626
}
2727

28-
}
28+
}

6/2.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ public static void main(String[] args) {
66

77
int[] arr = {3, 5};
88

9-
// 스와프
9+
// 스와프(Swap)
1010
int temp = arr[0];
1111
arr[0] = arr[1];
1212
arr[1] = temp;
1313

1414
System.out.println(arr[0] + " " + arr[1]);
1515
}
1616

17-
}
17+
}

7/2.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ int n, target;
1818
vector<int> arr;
1919

2020
int main(void) {
21-
// n(원소의 개수)와 target(찾고자 하는 값)을 입력 받기
21+
// n(원소의 개수)와 target(찾고자 하는 값)을 입력받기
2222
cin >> n >> target;
23-
// 전체 원소 입력 받기
23+
// 전체 원소 입력받기
2424
for (int i = 0; i < n; i++) {
2525
int x;
2626
cin >> x;

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* 전체 기출 문제 풀이에 대한 C++/Java 코드는 2020년 08월 07일까지 모두 업로드 완료됩니다.
88
* 책 내용 및 소스코드와 관련한 궁금한 점은 [Issues](https://github.com/ndb796/python-for-coding-test/issues) 탭을 이용하여 남겨주세요.
99
* 책의 오류 사항을 발견하시면 [email protected]로 보내주시면 감사하겠습니다.
10-
* 이 경우, 원하신다면 [정오표](/notice.md)에 독자님의 이름(혹은 아이디)을 함께 기재해드립니다.
10+
* 이 경우, 원하신다면 <b>[정오표](/notice.md)</b>에 독자님의 이름(혹은 아이디)을 함께 기재해드립니다.
1111
* 이 책을 이용해 강의를 진행하시는 교수/선생님/강사/동아리장 님들을 위해 강의용 PPT를 제공합니다. (준비중)
1212
* 전체 동영상 강의는 2020년 8 ~ 9월에 걸친 유튜브 라이브 강의를 진행하고 편집 후에 업로드 될 예정입니다.
1313
* 책 구매 링크: [한빛미디어](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)

0 commit comments

Comments
 (0)