Posts by Category

algorithm

About NP Complete

1 minute read

CS에서 대부분의 중요한 문제는 NP에 속해있다.

About NP Theory

2 minute read

ex) 30PB 크기의 데이터는 Computationally Prohibited 된다.

About TSP

1 minute read

TSP(Traveling Salesman Problem)

About Greedy

2 minute read

DP gives optimal solution but not practical in fields

About SSSP

1 minute read

Single Source Shortest Path Problem(SSSP)

About Graph Theory

less than 1 minute read

알고리즘 디자인의 과정(솔루션을 도출하는 과정)

About Algorithm3

1 minute read

알고리즘 03 Divide and Conquer: Quick Sort

About Dijkstra

2 minute read

다익스트라 알고리즘이란? 두 노드를 잇는 가장 짧은 경로를 찾는 문제인 최단 경로 문제 로, 가중치 그래프에서 간선의 가중치의 합이 최소가 되도록 하는 경로를 찾는 것이 목적이다.

About DFS

1 minute read

DFS(깊이 우선 탐색)

About BFS

1 minute read

BFS(너비 우선 탐색) BFS는 대표적인 그래프 탐색 알고리즘 으로, 또다른 대표적인 그래프 탐색 알고리즘 에는 DFS(깊이 우선 탐색) 이 있다.

Back to top ↑

programming

About TDD

1 minute read

TDD(Test Driven Development)

About SOLID S & O

2 minute read

SOLID: 객체 지향 설계의 다섯 가지 원칙

Back to top ↑

flutter

About Device Orientation

1 minute read

모바일 디바이스는 가로, 세로로 변합니다. 오늘은, 이 디바이스의 방향을 다루는 법을 알아봅시다.

About Form Validation

1 minute read

form을 만들었다면, 당연히 폼에 적절한 입력이 들어왔는지를 검증해야합니다. 오늘은 폼의 입력값을 어떻게 검증하는지 알아보겠습니다.

About “Key”

2 minute read

위젯의 크기 구하기 그런데 이제 키를 곁들인…

About ThemeData

1 minute read

Flutter - Theme을 잘 사용해 보자

Back to top ↑

dataStructure

About Tree

1 minute read

updated at 2022-05-31 Tree는

Back to top ↑

designPattern

Back to top ↑

programmingLanguage

Javascript Remind 1

1 minute read

Javascript The Definitive Guide - David Flanagan 중

Back to top ↑

DeepLearning

About Deep Learning 1

2 minute read

딥러닝의 기본 개념 1 Neural Networks by 3Blue1Brown

Back to top ↑

HTTP

About CORS 2

4 minute read

교차 출처 리소스 공유(CORS)

About CORS 1

1 minute read

교차 출처 리소스 공유(CORS)

Back to top ↑

ComputerGraphics

About Data Model

1 minute read

데이터 모델은, 벡터 그래픽스의 논리적 데이터 모델로, 해석 기하학에 기반을 둔다.

Back to top ↑

WebAPI

Http Stream

4 minute read

Streams API Streams API는 javascript를 이용해 네트워크를 통해 전송된 데이터 스트림에 접근하여 원하는 대로 처리가 가능한 API를 제공합니다.

Back to top ↑

OOP

Back to top ↑

backend

About Azure Function

4 minute read

이 블로그 포스트의 내용은 2022 Open Source Contributon Challenges 기간 워크샵 내용을 정리한 것입니다.

Back to top ↑

DSL

About Bicep

1 minute read

이 블로그 포스트의 내용은 2022 Open Source Contributon Challenges 기간 워크샵 내용을 정리한 것입니다.

Back to top ↑

devOps

About Github Actions

8 minute read

이 블로그 포스트의 내용은 2022 Open Source Contributon Challenges 기간 워크샵 내용을 정리한 것입니다.

Back to top ↑

compilation

About Compile && Runtime Constant

1 minute read

컴파일 언어에는 크게 두가지 상태가 있습니다. 컴파일 타임과 런 타임이죠. 컴파일 타임은 말 그대로 코드를 컴파일 하는 시간을 말하는 것이고, 런 타임은 그 코드가 실제 실행되는 시간을 말하는 것이죠.

Back to top ↑

modularization

About Webpack

2 minute read

웹팩을 이제야 공부하다니… html 태그랑 CSS 만지기는 정말 싫어해서 웹앱은 가능하면 다 JS로 만들고싶어하는 주제에… 네. JS 코더 실격입니다. 사실 한참 전부터 모듈 번들러(웹팩, 걸프, 파셀 등등)를 공부해서 잘 써먹어야지 했지만 결국 하지 못했습니다. 하지만!!! 지금...

Back to top ↑

Architecture

Back to top ↑

React

About Higher Order Components

3 minute read

이 글은 React docs의 Higher Order Components를 직접 번역, 요약한 글입니다.

Back to top ↑

DataStructure

Back to top ↑

MachineLearning

About GNN

3 minute read

이 글은 huggingface 의 포스팅을 번역, 요약한 글입니다. 모든 컨텐츠에 대한 저작권은 huggingface 에 있습니다.

Back to top ↑

BuildSystem

About CMAKE 1.0.0

2 minute read

이 글은 CMAKE의 공식 투토리얼을 따라가면서 정리한 글입니다.

Back to top ↑