Leetcode 0242. Valid Anagram
Given two strings `s` and `t`, return `true` if `t` is an anagram of `s`, and `false` otherwise. An Anagram is a word or phrase formed by rearranging the letters of a different word or ph...
Given two strings `s` and `t`, return `true` if `t` is an anagram of `s`, and `false` otherwise. An Anagram is a word or phrase formed by rearranging the letters of a different word or ph...
Given an array of integers `nums` and an integer `target`, return indices of the two numbers such that they add up to `target`. You may assume that each input would have exactly one solut...
Given an integer array `nums`, return `true` if any value appears at least twice in the array, and return `false` if every element is distinct. Example 1: Input: nums = [1,2,3,1], ...
Given an integer n, return a string array answer (1-indexed) where: - `answer[i] == "FizzBuzz"` if `i` is divisible by `3` and `5`. - `answer[i] == "Fizz"` if `i` is divisible by `3`. ...
간혹 Git을 사용하면서 branch 이름을 변경 해야 할 때가 있었다. 회사에서 프로젝트를 진행하며 branch의 이름을 바꾸는 경우는 드물었지만 개인 Project나 공부를 할 때, 각각의 branch로 Project의 타임라인을 포맷에 맞춰 이름을 바꾼 방법을 공유한다. Rename Local Git Branch 이름을 바꾸...
튜토리얼을 혹은 프로젝트를 진행하면서 분명 작동된다고 생각하고 commit했던 코드가 작동을 하지 않아 곤욕을 치른적이 있다. 이때 어디서 어떻게 잘못됬는지 찾기위해 이전에 commit 한 commit history를 확인하고 commit을 한 시점의 코드로 돌아가 프로그램이 잘 작동되는지 확인 할 수 있는데, 이때 git log 를 사용한다. ...
React, Front-end projects를 진행하면서 매번 사용하였던 import keyword가 NodeJS를 이용한 Server 구축을 하면서 require라는 keyword로 대체되면서 이에따른 기본적인 궁금증을 풀기위해 기록한다. CommonJS: require NodeJS에서의 require는 built-in function으로 현재...
React Web Client 작업을 하면서 필요했던 .env 파일 안의 환경변수를 가져오는 방법에 대하여 서술해 본다. dotenv 를 사용하여 환경변수를 가져올 계획이었으나 dotenv를 불러오는데 문제가 많았다. 허나, React App 에서는 환경변수를 REACT_APP_ 으로 시작하여 작성하면 dotenv를 사용하지 않더라도 환경변수를 불러올...
Deployment with Heroku CLI Install Heroku CLI Ubuntu / Debian apt-get $ curl https://cli-assets.heroku.com/install-ubuntu.sh | sh npm $ npm install -g heroku ...
Install HomeBrew on WSL2 Open Ubuntu WSL App Run Update command $ sudo apt update Install tool require to setup Brew $ sudo apt-get install build-essential curl file git ...