TIL Done it Linked List 만들기 Can I get JS variable Memory Address? 알고리즘 문제 :) 과제(전위, 중위, 후위) Feeling 아직도 문제를 풀때 정리를 제대로 하지 않고 코드부터 짜기 시작한다. 그리고 갑자기 왜 1문제가 안풀리는 건지 참,,,, LinkedList, Queue, Stack 종류 별로 혼자 구현 다했는데 프린터라는 문제에서 막혔다... 왜일까? 참 궁금하다. 하루 사용량이 있는 로봇인 줄 REF https://www.techtarget.com/searchnetworking/definition/big-endian-and-little-endian#:~:text=Big%2Dendian%20is%20an%20order,the%20sequenc..
TIL Done it Module, Component Module: 설계시점에서 의식적으로 나눈 요소 Component: 실행 중인 S/W 활동 단위 요소 Ex)Module: Server, Client => 2개 Component: Server 1개, Client 20개 => 21개 Client-Server System에서 1개 Server가 20개 Client에게 정보 제공할 경우 type="module" 특징 use strict로 실행 모듈 레벨 Scope가 있다. 단 한번만 평가된다. 지연 실행된다. Dom이 만들어진 후에 실행 Git / Github 특강 및 복습 => 직접 해보고 있습니다... 유니코드 endian: 컴퓨터 메모리에 저장된 byte 순서 big-endian: 가장 중요한 값이 먼..
TIL Done it Memory Heap & call stack control flow, data flow control flow: 조건 반복을 통해 상태 제어 일반적인 if, else, for ... const oddNum = () => { let a = [1,2,3,4,5,6,7,8,9,10]; let odd = []; for (let i = 0; i { let a = [1,2,3,4,5,6,7,8,9,10]; let odd = a.filter(Num => Num % 2 === 1);..