분류 전체보기

    [React] react 앱을 만들기전 셋업

    [React] react 앱을 만들기전 셋업

    터미널을 이용한 파일생성 및 실행 먼저 [터미널] 을 열어서 리엑트 파일을 만들어줘야합니다. (터미널 여는법: Command shift P) 저는 [Documents] 아래에 [movie-app-2019] 이름으로 만들어주겠습니다. 1. 경로 설정해주기 저는 documents아래에 react파일을 만들어 주도록하겠습니다. cd [경로] 2. React파일 만들어주기 npx create-react-app [파일이름] 3. Visual Studio Code 열기 code [react파일 이름] 터미널을 통해 [리엑트 폴더] 를 만들었다면 [Visual Studio Code]에서 열든지 아래와 같이 code - [파일이름] 을 적어주시면 Visual Studio Code로 자동으로 윈도우가 열리게 됩니다. 만..

    [JavaScript]856. Score of Parentheses 쉬운설명, stack 사용

    [JavaScript]856. Score of Parentheses 쉬운설명, stack 사용

    856. Score of Parentheses Given a balanced parentheses string s, return the score of the string. The score of a balanced parentheses string is based on the following rule: "()" has score 1. AB has score A + B, where A and B are balanced parentheses strings. (A) has score 2 * A, where A is a balanced parentheses string. Example 1: Input: s = "()" Output: 1 Example 2: Input: s = "(())" Output: 2 E..

    [JavaScript]34. Find First and Last Position of Element in Sorted Array - 쉬운설명

    34. Find First and Last Position of Element in Sorted Array Given an array of integers nums sorted in non-decreasing order, find the starting and ending position of a given target value. If target is not found in the array, return [-1, -1]. You must write an algorithm with O(log n) runtime complexity. Example 1: Input: nums = [5,7,7,8,8,10], target = 8 Output: [3,4] Example 2: Input: nums = [5,7..

    [JavaScript] 946. Validate Stack Sequences 쉬운설명

    946. Validate Stack Sequences Given two integer arrays pushed and popped each with distinct values, return true if this could have been the result of a sequence of push and pop operations on an initially empty stack, or false otherwise. Example 1: Input: pushed = [1,2,3,4,5], popped = [4,5,3,2,1] Output: true Explanation: We might do the following sequence: push(1), push(2), push(3), push(4), po..