목록전체 글 (245)
일상 코딩
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
https://www.acmicpc.net/problem/1874 1874번: 스택 수열 1부터 n까지에 수에 대해 차례로 [push, push, push, push, pop, pop, push, push, pop, push, push, pop, pop, pop, pop, pop] 연산을 수행하면 수열 [4, 3, 6, 8, 7, 5, 2, 1]을 얻을 수 있다. www.acmicpc.net N = int(input()) count = 1 stack = [] result = "" for _ in range(N): Answer = int(input()) while count
https://better-together.tistory.com/93 쉽게 이해하는 네트워크 9. 웹 서버와 웹 브라우저의 TCP/IP 통신 과정 웹 브라우저와 웹 서버가 통신하는 과정 TCP/IP를 기반으로 한 인터넷에서 데이터를 캡슐화와 역캡슐화를 거쳐 전송됩니다. 참조: TCP/IP 에서의 데이터 통신 이번 포스팅에서는 인터넷을 대표하 better-together.tistory.com
https://regexr.com/ RegExr: Learn, Build, & Test RegEx RegExr is an online tool to learn, build, & test Regular Expressions (RegEx / RegExp). regexr.com
https://blog.outsider.ne.kr/360 알고 있어야 할 8가지 정규식 표현 from nettuts+ :: Outsider's Dev Story nettuts+에 Vasili이 쓴 유용한 정규식 표현에 대한 글을 올려서 내용 정리합니다. 정규식만 잘 써도 Validation이나 String을 다루기가 무척 편할텐데 쓸때마다 헷갈리고 약간은 어렵게 느껴지고 쉽게 blog.outsider.ne.kr
2.1 연결하기¶ In [ ]: import pymongo In [ ]: host_info2 = 'mongodb://ubuntu:1234@127.0.0.1:27017' conn = pymongo.MongoClient(host_info2) print(conn) MongoClient(host=['127.0.0.1:27017'], document_class=dict, tz_aware=False, connect=True) 2.2 mydbs Database 사용하기¶ In [ ]: # 몽고db 객체 생성 knowledge = conn.mydbs In [ ]: # 이렇게도 가능하다. knowledge = conn["mydbs"] In [ ]: print(dir(knowledge)) [&..
1. main.cpp #include "Worker.h" // using namespace std; int main() { Worker().doSomething(); return 0; } 2. Timer.h #pragma once #include #include #include #include #include class Timer { private: using clock_t = std::chrono::high_resolution_clock; using second_t = std::chrono::duration; std::chrono::time_point start_time = clock_t::now(); public: void elapsed() { std::chrono::time_point end_tim..
#include #include #include using namespace std; class Doctor; // forward declaration class Patient { private: string m_name; vector m_doctors; public: Patient(string name_in) : m_name(name_in) { } void addDoctor(Doctor *new_doctor) { m_doctors.push_back(new_doctor); } void meetDoctors(); friend class Doctor; }; class Doctor { private: string m_name; vector m_patients; public: Doctor(string name_..
https://docs.mongodb.com/mongodb-shell/run-commands/ mongosh Usage — MongoDB Shell Docs Home → MongoDB ShellTo run commands in mongosh, you must first connect to a MongoDB deployment.To display the database you are using, type db:The operation should return test, which is the default database.To switch databases, issue the use helper, docs.mongodb.com