Posts by Tag

graph

About TSP

1 minute read

TSP(Traveling Salesman Problem)

About Tree

1 minute read

updated at 2022-05-31 Tree는

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 Dijkstra

2 minute read

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

About DFS

1 minute read

DFS(깊이 우선 탐색)

About BFS

1 minute read

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

Back to top ↑

algorithm

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

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

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 ↑

programmingPhilosophy

About TDD

1 minute read

TDD(Test Driven Development)

About SOLID S & O

2 minute read

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

Back to top ↑

OOP

About SOLID S & O

2 minute read

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

Back to top ↑

tree

About Tree

1 minute read

updated at 2022-05-31 Tree는

About DFS

1 minute read

DFS(깊이 우선 탐색)

About BFS

1 minute read

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

Back to top ↑

widget

About Device Orientation

1 minute read

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

About Form Validation

1 minute read

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

About “Key”

2 minute read

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

Back to top ↑

problemSolving

About Algorithm3

1 minute read

알고리즘 03 Divide and Conquer: Quick Sort

Back to top ↑

DynamicProgramming

About SSSP

1 minute read

Single Source Shortest Path Problem(SSSP)

Back to top ↑

computation

About NP Complete

1 minute read

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

About NP Theory

2 minute read

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

Back to top ↑

javascript

Http Stream

4 minute read

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

Javascript Remind 1

1 minute read

Javascript The Definitive Guide - David Flanagan 중

Back to top ↑

AI

About GNN

3 minute read

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

About Deep Learning 1

2 minute read

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

Back to top ↑

dataStructure

About DFS

1 minute read

DFS(깊이 우선 탐색)

About BFS

1 minute read

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

Back to top ↑

theory

About NP Complete

1 minute read

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

About NP Theory

2 minute read

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

About Graph Theory

less than 1 minute read

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

Back to top ↑

greedy

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)

Back to top ↑

DFS

Back to top ↑

Backtracking

Back to top ↑

ProblemClassification

About NP Complete

1 minute read

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

About NP Theory

2 minute read

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

Back to top ↑

layout

Back to top ↑

frontend

About Higher Order Components

3 minute read

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

About Webpack

2 minute read

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

Back to top ↑

DeepLearning

About Deep Learning 1

2 minute read

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

Back to top ↑

NeuralNetworks

About Deep Learning 1

2 minute read

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

Back to top ↑

web

About CORS 2

4 minute read

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

About CORS 1

1 minute read

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

Back to top ↑

http

About CORS 2

4 minute read

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

About CORS 1

1 minute read

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

Back to top ↑

Divide&Conquer

About Algorithm3

1 minute read

알고리즘 03 Divide and Conquer: Quick Sort

Back to top ↑

BranchAndBound

About TSP

1 minute read

TSP(Traveling Salesman Problem)

Back to top ↑

NP

About NP Complete

1 minute read

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

Back to top ↑

Azure

About Bicep

1 minute read

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

About Azure Function

4 minute read

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

Back to top ↑

design

Back to top ↑

form

About Form Validation

1 minute read

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

Back to top ↑

VectorGrahpics

About Data Model

1 minute read

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

Back to top ↑

Mathematics

About Data Model

1 minute read

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

Back to top ↑

network

Http Stream

4 minute read

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

Back to top ↑

programmingParadigm

Back to top ↑

functionalProgramming

Back to top ↑

test

About TDD

1 minute read

TDD(Test Driven Development)

Back to top ↑

TDD

About TDD

1 minute read

TDD(Test Driven Development)

Back to top ↑

programmingPhilosolphy

Back to top ↑

exceptionHandling

Back to top ↑

API

Back to top ↑

sorting

Back to top ↑

DAG

Back to top ↑

BFS

Back to top ↑

lowerBound

Back to top ↑

Approximation

Back to top ↑

designPattern

Back to top ↑

paradigm

Back to top ↑

microservice

About Azure Function

4 minute read

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

Back to top ↑

ARM

About Bicep

1 minute read

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

Back to top ↑

IaaS

About Bicep

1 minute read

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

Back to top ↑

github

About Github Actions

8 minute read

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

Back to top ↑

CD

About Github Actions

8 minute read

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

Back to top ↑

CI

About Github Actions

8 minute read

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

Back to top ↑

frontendArchitecture

Back to top ↑

theme

About ThemeData

1 minute read

Flutter - Theme을 잘 사용해 보자

Back to top ↑

development

Back to top ↑

adaptiveDesign

Back to top ↑

state

Back to top ↑

key

About “Key”

2 minute read

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

Back to top ↑

validation

About Form Validation

1 minute read

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

Back to top ↑

ListView

Back to top ↑

orientation

About Device Orientation

1 minute read

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

Back to top ↑

device

About Device Orientation

1 minute read

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

Back to top ↑

programmingLanguage

About Compile && Runtime Constant

1 minute read

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

Back to top ↑

variable

About Compile && Runtime Constant

1 minute read

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

Back to top ↑

bundler

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 ↑

Patterns

About Higher Order Components

3 minute read

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

Back to top ↑

queue

Back to top ↑

heap

Back to top ↑

Graph

About GNN

3 minute read

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

Back to top ↑

DataStructure

About GNN

3 minute read

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

Back to top ↑

Algorithm

About GNN

3 minute read

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

Back to top ↑

NeuralNetwork

About GNN

3 minute read

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

Back to top ↑

ML

About GNN

3 minute read

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

Back to top ↑

DL

About GNN

3 minute read

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

Back to top ↑

C

About CMAKE 1.0.0

2 minute read

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

Back to top ↑

C++

About CMAKE 1.0.0

2 minute read

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

Back to top ↑

CMAKE

About CMAKE 1.0.0

2 minute read

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

Back to top ↑