일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- cpp
- 조지아텍
- 딥러닝
- LAA
- 위니펙
- 알고리즘
- omscs
- 온라인석사
- 개발자
- 매트랩
- mpnp
- Plotting
- 방통대
- leetcode
- 기본
- 컴퓨터과학과
- zeros
- EOI
- 선형대수
- 프로그래머스
- C++
- 코딩테스트
- 캐나다 영주권
- LV1
- MATLAB
- machine learning
- 주정부이민
- 방송통신대학교
- 머신러닝
- Deep learning
- Today
- Total
목록전체 글 (136)
Byte by Byte
사랑하기 때문에 유재하(피아노 MR) https://youtu.be/bxkJPEyylrI?si=Q__aFJdSXH8eyO4W https://youtu.be/cLSLg0RZYQM?si=lYt_VLv_AzRpVqfq 처음부터지금까지 https://youtu.be/k8tf9tbmD-c?si=_H8PgTzf82DqWN2p 너의모든순간 피아노 https://youtu.be/4XUo4rHdpVY?si=GQV8mAQq-BEfS74u 쉿 - 소수빈 https://youtu.be/oAE6waXnWS4?si=PODFya0oP9AkSZlQ 두사람 - 성시경 https://youtu.be/XEmbnPpbho8?si=d_x8MV8LeS03daNP 그대만있다면 https://youtu.be/kz45EWCW84k?si=cJQec0..
아리랑 피아노 반주 https://youtu.be/NJnuhC_qOQA?si=ovsEeJY1m5jE1ipc 너의모든순간 피아노 https://youtu.be/4XUo4rHdpVY?si=GQV8mAQq-BEfS74u 희재 https://youtu.be/0_D2CKY_Uek?si=dRr1mxtZGxWJ7Pi2쉿 - 소수빈 https://youtu.be/oAE6waXnWS4?si=PODFya0oP9AkSZlQ 넌 감동이었어 https://youtu.be/szoPzey6h6g?si=JBIzIFcFOy3vGYaD 이노래 (멜로디 제거) https://youtu.be/TXmy69P41vU?si=Wn-6soVtEbVnEdb9 그대만있다면 https://youtu.be/nxZE2fWiEKw?si=RnOeXaSc6rZ7..
#include using namespace std; int binary_search(int arr[], int size, int target){ int left = 0; int right = size - 1; while (left
#include using namespace std; int partition(int arr[], int low, int high){ int pivot = arr[high]; int i = low - 1; for (int j = low; j < high; j++){ if (arr[j] < pivot){ i++; swap(arr[i], arr[j]); } } swap(arr[i + 1], arr[high]); return (i + 1); } void quick_sort(int arr[], int low, int high){ if (low < high) { //pi = pivotindex int pi = partition(arr, low, high); quick_sort(arr, low, pi - 1); q..
#include #include #include using namespace std; class Graph{ int V; list*adj; public: Graph(int V); ~Graph(); void add_line(int from, int to); void bfs(int start); }; Graph::Graph(int V){ this->V = V; adj = new list[V]; } Graph::~Graph(){ delete[] adj; } void Graph::add_line(int from, int to){ adj[from].push_back(to); } void Graph::bfs(int start){ bool *visited = new bool[V]{false}; visited[star..
중고차를 인수할 때 운전 전에 채크해야 할 항목들이 있습니다. 이런 오래된 차량은 특히 주의깊게 검사해야 합니다. 다음은 주요 검사 항목들입니다: 1. **외관 및 차체**: 차량 전체의 상태, 긁힘, 찍힘, 부식 여부를 확인합니다. 2. **타이어**: 깊이와 마모 상태를 확인하고, 고르게 마모되었는지, 에어가 적당히 들어있는지 확인합니다. 3. **브레이크**: 브레이크 패드의 상태와 브레이크 오일의 수준 및 색상을 확인합니다. 4. **엔진 오일**: 오일 수준과 색상을 확인합니다. 까맣게 변했거나 너무 낮으면 교체가 필요할 수 있습니다. 5. **냉각수**: 레벨을 확인하고 색상이 이상하거나 물처럼 얇아진 경우에는 교체가 필요합니다. 6. **전조등, 신호등, 브레이크 라이트**: 모든 라이트가 ..
1. Import & Payment (End of August): Imported the car and completed the associated payment. 2. Receive BOL (End of September): Obtained the necessary BOL documentation three days after shipping. 3. Document Forwarding (October 18): Sent the Arrival notice, pickup instructions, and in bond, which were received from the port agency (WWS), to the shipping agency (Monte Ship). 4. Verify Steamship Re..
1. 차량 수입 및 결제: 차량을 수입하고 해당 금액을 결제합니다. 2. BOL 서류 수령: 필요한 BOL 서류를 받습니다. 3. 항구 에이전시 문서 전달: 항구 에이전시(WWS)에서 받은 Arrival notice, 픽업 안내문, in bond를 선적 에이전시(Monte Ship)에 전달합니다. 4. Steamship release 확인: 선적 에이전시에서 항구 에이전시로 Steamship release를 전달받았는지 전화로 확인합니다. 5. 서류 준비: BOL, Export certification (영문 및 일문 원본), 인보이스, In bond 2장을 준비합니다. 6. 택스 오피스 방문: 택스 오피스에 방문하여 Form 1을 작성합니다. 작성 방법은 현장에서 안내받습니다. 7. 세금 결제: 모든 ..