• 2020-10 넷째 주

    🟥 : 미완료 ✅ : 완료 10/19 (월) ✅ 자소서 / 포트폴리오 정리 🟥 Mix-in 프로젝트 🟥 Hoaxify 작업 (Test Code refactoring) 10/20 (화) ✅ 자소서 / 포폴 정리 🟥 M 사 지원 ✅ NodeLab 플젝 기획 회의 참여 (Offline) 🟥 Mix-in 프로젝트 회고 : 자소서는 써도 써도 쉽지않다.. NodeLab...


  • 2020-10 셋째 주

    🟥 : 미완료 ✅ : 완료 10/12 (월) ✅ TypeScript 학습 ✅ Mix-in 프로젝트 10/13 (화) ✅ NodeLab 프로젝트 기획 회의 참석 ✅ TypeScript 학습 회고: NodeLab 프로젝트의 방향이 조금씩 잡히기 시작했다. 토요일 회의 때까지 아이디어 정리가 좀 필요할 것 같다. 10/14 (수) 🟥 Mix-in 프로젝트 ✅ 이력서 검토 ✅...


  • 2020-10 둘째 주

    🟥 : 미완료 ✅ : 완료 10/05 (월) ✅ 옹헤야 플젝 기획 정리 및 회의 🟥 Mix-in 프로젝트 🟥 알고리즘 문제풀기 ✅ 학습 계획 세우기 회고: 매일 오전을 학습 시간으로 잡아보자. (9~12 총 3시간) 학습해야 할 것 Next.js Document 읽기 (SSR 공부) : 가장 시급함. SSR 은 React doc 부터...


  • Leetcode [Easy] 125 - Valid Palindrome

    LeetCode 125 Valid Anagram 문제 출처 문제 Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purpose of this problem, we define empty string as valid palindrome. Example 1: Input: "A man, a plan, a canal: Panama" Output: true Example...


  • Leetcode [Easy] 242 - Valid Anagram

    LeetCode 242 Valid Anagram 문제 출처 문제 Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Input: s = "anagram", t = "nagaram" Output: true Example 2: Input: s = "rat", t = "car" Output: false Note: You...