• 2020-10 첫째 주

    🟥 : 미완료 ✅ : 완료 9/28 (월) 🟥 Notion 에 이력서 틀 만들어보기 ✅ Mixin 프로젝트 ✅ 알고리즘 문제 풀기 ✅ 우아한테크러닝 React 정리 내용 플젝 팀원들에게 공유하기 회고: 프로젝트에 API 연동 코드를 짜면서 Redux 를 다루는 능력이 조금 향상된 것을 느꼈다. 뿌듯했다. 막상 강의를 정리한 것을 공유하려니 보완해야할...


  • Leetcode [Easy] 387 - First Unique Character in a String

    LeetCode 387 First Unique Character in a String 문제 출처 문제 Given a string, find the first non-repeating character in it and return its index. If it doesn't exist, return -1. Examples: s = "leetcode" return 0. s = "loveleetcode" return 2. Note: You may assume the string contains only...


  • Leetcode [Easy] 7 - Reverse Integer

    LeetCode 7 Reverse Integer 문제 출처 문제 Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123 Output: 321 Example 2: Input: -123 Output: -321 Example 3: Input: 120 Output: 21 Note: Assume we are dealing with an environment which could only store integers within the...


  • Leetcode [Easy] 344 - Reverse String

    LeetCode 344 Reverse String 문제 출처 문제 Write a function that reverses a string. The input string is given as an array of characters char[]. Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory. You may assume...


  • React-Redux 라이브러리

    React-Redux 라이브러리 📖 Table of Contents 개요 제공되는 함수 connect() Hooks useSelector() useDispatch() useStore() Custom Context Reference 개요 React Redux 는 React 의 Redux 를 위한 공식적인 UI binding library (어떠한 로직과 UI 를 결합시키는 라이브러리) 이다. 즉, Redux 와 React 를 함께 쓰고 있다면, React-Redux 라이브러리를 사용해 두 라이브러리를...