본문 바로가기

72

프로그래밍 공부 1. 널널한 개발자 TV https://www.youtube.com/channel/UCdGTtaI-ERLjzZNLuBj3X6A/videos 널널한 개발자 TV 널널한 개발자의 온라인 강의실 입니다. www.youtube.com 유명한 열혈강의의 저자이신 최호성님이 운영하는 유튜브 채널 도커 설명 강의을 듣고 나서 뭔가 소화불량이 해결되는 느낌이었다 블로그 같은 곳에서 글로 설명되어있는 것들은 내가 이해를 잘 못했는데 강의를 듣고나니 불만족스러웠던 부분들이 싹 사라졌다. 22분이 아깝지가 않았다 2022. 4. 7.
[LeetCode] 26. Remove Duplicates from Sorted Array 문제 출처 : https://leetcode.com/problems/remove-duplicates-from-sorted-array/ Remove Duplicates from Sorted Array - 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 영어를 못해서 문제를 제대로 읽질못함. 그래서 시간도 오래걸렸음. 문제는 다른사람들이 설명해준걸 읽고 다시풀었음. 코드는 배열의 길이를 리턴하는데 주어진 배열을 리턴된 int값 만큼 자기네가 돌려보겠다. 이런 형태였다.. 2020. 7. 21.
[LeetCode] 13. Roman to Integer 2020. 7. 13.
강제로 인스턴스 생성 function Func(num){ if(!(this instanceof Func)){ return new Func(num); } this.value = num ? num : 0; } var temp1 = new Func(100); var temp2 = Func(20); console.log(temp1.value); //100 console.log(temp2.value); //20 console.log(window.value); //undefined 2번째 라인을 this instanceof arguments.callee 를 사용하면 특정 함수의 이름과 상관없이 이 패턴을 공통으로 사용하는 모듈을 작성할 수 있다 2019. 12. 27.