일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- Compas
- 캐치
- 백준
- 파이썬
- dacon
- 금융문자분석경진대회
- 캐글
- programmers
- windows
- Git
- Keras
- leetcode
- NLP 대회
- catch
- PYTHON
- 캐치카페
- 프로그래머스
- 우분투
- 자연어처리
- Baekjoon
- ubuntu
- AI 경진대회
- elasticsearch
- 인공지능 공모전
- Real or Not? NLP with Disaster Tweets
- selenium
- SW Expert Academy
- Kaggle
- hackerrank
- 데이콘
- Today
- 161
- Total
- 516,979
목록2021/01/18 (2)
솜씨좋은장씨

서버에 접속하기 위해서 $ ssh -i ~/somjang/server_keys/server_key.pem ubuntu@0.0.0.0 위와 같이 접속을 시도하였으나 아래와 같은 오류가 발생하게 되었습니다. The authenticity of host '0.0.0.0 (0.0.0.0)' can't be established. ECDSA key fingerprint is SHA256:sdfkjdlskdjflskdjflksjdflskdjlskfjsdlkf. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added '0.0.0.0' (ECDSA) to the list of known hosts..

Given a non-empty, singly linked list with head node head, return a middle node of linked list. If there are two middle nodes, return the second middle node. Example 1: Input: [1,2,3,4,5] Output: Node 3 from this list (Serialization: [3,4,5]) The returned node has value 3. (The judge's serialization of this node is [3,4,5]). Note that we returned a ListNode object ans, such that: ans.val = 3, an..