본문 바로가기

2020-2021170

leetcode#3. Median of Two Sorted Arrays leetcode.com/problems/median-of-two-sorted-arrays/ Median of Two Sorted Arrays - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 2021. 3. 17.
leetcode#2 Longest Substring Without Repeating Characters leetcode.com/problems/longest-substring-without-repeating-characters/ Longest Substring Without Repeating Characters - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 2021. 3. 16.
leetcode#1 twoSum-easy leetcode.com/problems/two-sum/submissions/ Two Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 2021. 3. 13.
Tree#1.이진탐색 2021. 3. 10.
#JavaScript [Call-Stack] JavaScript 자바스크립트는 싱글 쓰레드 언어 즉 한번에 한개의 일만 처리할 수 있다는 의미 Call_Stack 현재 실행중인 서브루틴(함수)에 대한 정보들을 담아두는 스택구조의 메모리영역 -콜스택은 프로세스의 어느 단계에 있는지를 기록하게 된다. Thread 운영체제에서 실행중인 하나의 프로그램을 프로세스라 하며 이 프로세스의 작은 단위 -쓰레드는 단 한개의 일만 처리할 수 있으며 쓰레드가 여러개 모여 이 프로세스의 작은 단위 -두개 이상의 프로세스는 멀티 프로세스, 그렇게 여러 일을 동시에 하는 것을 멀티 테스킹이라 한다. 1. 위의 함수를 호출하면 아래와 같이 스택이 하나씩 쌓이게 된다.(쌓이는 순서가 결국 진행 순서이다) 2. 위에서처럼 순서대로 위에 쌓인 스택은 위에서부터 처리가 되며 하나.. 2021. 3. 8.
Sort#1. 빠른정렬 urclass.codestates.com/codeproblem/c18f247f-563b-48fd-a46a-039d0dfd4082 코드스테이츠 urclass.codestates.com 2021. 3. 8.
Hash#2[위장] 다시 풀기.. 틀렸음. programmers.co.kr/learn/courses/30/lessons/42578 코딩테스트 연습 - 위장 programmers.co.kr 2021. 3. 5.
Mini-react-project2 #0 Javascript + React-hoos 리펙토링 타입스크립트 개념 배운 것을 바탕으로 기존 자바스크립트로 되어있는 애플리케이션을 타입스크립토 리펙토링 해보자 : ) 2021. 2. 28.
Block Chain [typescript] #4 이전 실습에서는 인수에 타입 지정하는 방법은 (인수:type) 방식을 배웠는데, 오늘 inteface 키워드와 typescript에서 타입 지정하는 방법을 배웠다. interface 인수에 타입을 설정할 때, 위와 같이 (인수 : 인수의 타입) 방법으로 설정을 했다면, 오늘은 interface 키워드를 사용해 객체 안에 인수의 타입을 설정하는 방법을 배웠다. Student 인터페이스는 문자열 타입의 name 프로퍼티와 숫자타입의 age 프로퍼티 2개를 가진다는 것을 의미한다. [함수에 전달된 객체가 나열된 요구 조건을 충족하면, 허용] 타입 검사는 프로퍼티들의 순서를 요구하지 않고, 요구하는 프로퍼티들이 존재하는지와 프로퍼티들이 요구하는 타입을 가졌는지만을 확인 1. interface의 선택적 프로퍼티 .. 2021. 2. 26.