Skip to content
Open
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
자기소개
- 이름: 한주형
- 학과: 임베디드시스템공학과
- 관심 분야: ROS2, 자율주행, 임베디드, AI 학습을 통한 인지, 판단
- 하고 싶은 것: 센서 융합 기반 주행/제어 프로젝트 경험 쌓기
- 관심 분야: ROS2, 자율주행, 임베디드, 인지, 판단
- 하고 싶은 것: 센서 퓨전을 기반으로 한 Path Planning 계획

PR 정보
- 링크: https://github.com/EliseEgkart/github_tutorial/pull/79
- 링크: https://github.com/EliseEgkart/github_tutorial/pull/62

## 문제 3. Issue 생성 + PR 승인 후 병합

Issue 정보
- 링크: https://github.com/EliseEgkart/github_tutorial/issues/80
- 링크: https://github.com/EliseEgkart/github_tutorial/issues/64

PR 정보
- 링크: https://github.com/EliseEgkart/github_tutorial/pull/81
- 링크: https://github.com/EliseEgkart/github_tutorial/pull/65
30 changes: 30 additions & 0 deletions github_tutorial/윤지윤-전기공학과.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Practice 답안 - 윤지윤(전기공학과)

---

## 문제 1. 브랜치 분기/병합 및 로그 그래프 캡처

-![윤지윤 Q1](../images/윤지윤-q1.png)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Markdown 문법에 맞지 않는 부분입니다. 리스트 항목으로 이미지를 표시하려면 -! 사이에 공백이 한 칸 필요합니다. 이대로는 이미지가 정상적으로 렌더링되지 않을 수 있습니다.

Suggested change
-![윤지윤 Q1](../images/윤지윤-q1.png)
- ![윤지윤 Q1](../images/윤지윤-q1.png)



---

## 문제 2. Fork 후 자기소개 문서 제출 및 PR 병합

자기소개
- 이름: 윤지윤
- 학과: 전기공학과
- 관심 분야: ROS2, 자율주행
- 하고 싶은 것: 프로젝트경험쌓기를 통해 ros에 관련된 모든 것을 배우기..ㅠㅜ 열심히 배우겠습니다! 화이팅!

PR 정보(예시)
- PR Title: `[opensw cont/김형진] 자기소개 문서를 제출합니다.` 와 같이 제출하세요.
- 링크: https://github.com/EliseEgkart/github_tutorial/pull/89
---

## 문제 3. Issue 생성 + PR 승인 후 병합 (컨벤션 준수)

PR 정보(예시, 수업과 내용이 상이함. 수업 내용을 기준으로 작성 할 것)
- 링크:
이슈링크 https://github.com/EliseEgkart/github_tutorial/issues/99
PR링크 https://github.com/EliseEgkart/github_tutorial/pull/101
Binary file removed practice/images/이기현-q1.png
Diff not rendered.
Binary file removed practice/images/장동혁-q1.png
Diff not rendered.
Binary file removed practice/images/정규민-q1.png
Diff not rendered.
29 changes: 0 additions & 29 deletions practice/이기현-전기공학.md

This file was deleted.

27 changes: 0 additions & 27 deletions practice/장동혁-컴퓨터공학부.md

This file was deleted.

28 changes: 0 additions & 28 deletions practice/정규민-전기공학과.md

This file was deleted.

12 changes: 12 additions & 0 deletions 윤지윤.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#include <iostream>

using namespace std;

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

using namespace std;를 전역 범위에서 사용하는 것은 이름 충돌(name collision)의 위험이 있어 권장되지 않습니다. 특히 헤더 파일에서는 절대 사용해서는 안 되며, 소스 파일에서도 가급적 std::cout, std::endl과 같이 std:: 접두사를 붙여 명시적으로 사용하는 것이 좋습니다.


int main(void){

cout << "안녕하세요" << end1;
cout << "안녕하세요1" << end1;
cout << "안녕하세요3" << end1;
Comment on lines +7 to +9

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

컴파일 오류가 발생합니다. end1은 정의되지 않은 식별자입니다. 줄바꿈을 위해서는 endl을 사용해야 합니다. std::endl의 오타로 보입니다.

Suggested change
cout << "안녕하세요" << end1;
cout << "안녕하세요1" << end1;
cout << "안녕하세요3" << end1;
cout << "안녕하세요" << endl;
cout << "안녕하세요1" << endl;
cout << "안녕하세요3" << endl;


return 0;
}