• [자료구조] List

    List List 구현하기 class MyArray { constructor() { this.length = 0; this.data = {}; } // search // O(1) get(index) { return this.data[index]; } // O(1) push(item) { this.data[this.length] = item; this.length++; return this.data; } // O(1) pop() { const lastItem = this.data[this.length - 1]; delete this.data[this.length - 1]; this.length--;...


  • Leetcode [Easy] 128 - Implement strStr()

    Leetcode 28 Implement strStr() 문제 출처 문제 Implement strStr(). Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. Clarification: What should we return when needle is an empty string? This is a great question to ask during an interview....


  • React v17.0 요약

    React v17.0 요약 이 글은 React 공식 문서의 Blog Post - React v17.0 를 요약한 글입니다. React 17 은 2020.10.20 Release 되었습니다. No New Features React 17 에는 개발자를 위한 새로운 기능은 없다. 대신 이번 배포의 최우선 목표는 React 자체를 더 쉽게 업그레이드 하는 것이다. 특히 React 17 은 한...


  • 2020-10 다섯째 주

    🟥 : 미완료 ✅ : 완료 10/26 (월) ✅ 원서 넣기 10/28 (수) ✅ Hoaxify 플젝 - User Login Validation ✅ NodeLab 플젝 - issue 정리 / Frontend 회의 일정 정하기 / Slack - GitHub 세팅


  • Git Rebase 이해하기

    Git Rebase git rebase 는 초보 개발자들에게 피하고 싶은 git command 로 여겨지지만, 잘 사용하면 개발팀에 매우 유용할 수 있다. 이 글에서는 git rebase 와 git merge 를 비교하며 Git workflow 에서 rebasing 을 사용할만한 모든 경우들을 설명해보려한다. 개념 가장 먼저 git rebase 에 대해 이해해야할 것은 git merge 와...