목록분류 전체보기 (253)
일상 코딩
http://www.aitimes.kr/news/articleView.html?idxno=22899 인공지능이 인간 두뇌가 언어 처리하는 방식 밝혔다!... MIT 신경과학자들, 더 나은 AI 모델 개발에 지난 몇 년 동안 언어 인공지능 모델은 특정 작업에 매우 능숙해졌다. 가장 주목할 만한 점은 텍스트 문자열에서 다음 단어를 예측하는 데 탁월하다는 것이다. 이 기술은 검색 엔진과 문자 메시 www.aitimes.kr
http://www.aitimes.kr/ 인공지능신문 인터넷 신문 www.aitimes.kr
import smtplib from email.mime.text import MIMEText smtp = smtplib.SMTP('smtp.gmail.com', 587) smtp.ehlo() # say Hello # 지메일은 보안상의 이유로 SMTP연결을 TLS(전송 계층 보안) 모드로 설정해 smtp.starttls() # TLS 사용시 필요 smtp.login('자신의ID@gmail.com', '자산의 gmail앱_비밀번호') # 보낼 메시지 작성 msg = MIMEText('본문 테스트 메시지 잘 갔으면 좋겠네.') msg['Subject'] = '메일 테스트' msg['To'] = '자산의ID@naver.com' # smtp.sendmail('송신자', '수신자', '메시지') smtp.sendm..
https://www.acmicpc.net/problem/5397 5397번: 키로거 첫째 줄에 테스트 케이스의 개수가 주어진다. 각 테스트 케이스는 한줄로 이루어져 있고, 강산이가 입력한 순서대로 길이가 L인 문자열이 주어진다. (1 ≤ L ≤ 1,000,000) 강산이가 백스페이스를 입 www.acmicpc.net T = int(input()) for _ in range(T): L = "" R = "" S = input() for s in S: if '' == s: if R: L += R[-1] R = R[:-1] elif '-' == s: if L: L = L[:-1] else: L += s L += R[::-1] print(L) 입력예시 2
#include using namespace std; class Mother { public: int m_i; Mother() : m_i(1) { cout
1. main.cpp #include "Student.h" #include "Teacher.h" using namespace std; int main() { Student std("Jack Jack"); std.setName("Jack Jack 2"); std.getName(); Teacher teacher1("Dr. H"); teacher1.setName("Dr. K"); cout
#include using namespace std; class Mother { private: int m_i; public: Mother(const int & i_in = 0) : m_i(i_in) { cout
https://www.acmicpc.net/problem/1966 1966번: 프린터 큐 여러분도 알다시피 여러분의 프린터 기기는 여러분이 인쇄하고자 하는 문서를 인쇄 명령을 받은 ‘순서대로’, 즉 먼저 요청된 것을 먼저 인쇄한다. 여러 개의 문서가 쌓인다면 Queue 자료구조에 www.acmicpc.net T = int(input()) for _ in range(T): N, M = map(int, input().split()) q = list(map(int, input().split())) ck = [False]*N # target 번호 추적 체크 리스트 ck[M] = True # target만 True로 변환 cnt = 0 target = q[M] idx_t = M def down_shift(idx)..
https://github.com/boostcamp-ai-tech-4/ai-tech-interview GitHub - boostcamp-ai-tech-4/ai-tech-interview: 👩💻👨💻 AI 엔지니어 기술 면접 스터디 👩💻👨💻 AI 엔지니어 기술 면접 스터디. Contribute to boostcamp-ai-tech-4/ai-tech-interview development by creating an account on GitHub. github.com
https://docs.mongodb.com/v4.4/tutorial/install-mongodb-on-ubuntu/ Install MongoDB Community Edition on Ubuntu — MongoDB Manual Docs Home → MongoDB ManualMongoDB AtlasMongoDB Atlas is a hosted MongoDB service option in the cloud which requires no installation overhead and offers a free tier to get started.Use this tutorial to install MongoDB 4.4 Community Edition on LTS (long-ter docs.mongodb.com