Home
INES
Cancel

LeetCode -232. Implement Queue using Stacks(MJ)

#232. Implement Queue using Stacks LeetCode의 Easy단계 문제이다. 이 문제 역시 올리지 않아도 되지만, 내게는 꽤 도움이 되었던 워밍업 문제였기에 첨부한다. 📖Description Implement a first in first out (FIFO) queue using only two stacks. The im...

LeetCode - 48. Rotate Image

[LeetCode] 48. Rotate Image LeetCode 48번 문제를 풀어보았다.. Link Problem You are given an n x n 2D matrix representing an image, rotate the image by 90 degrees (clockwise). You have to rotate the imag...

백준 - 9012. 괄호

[백준] 9012. 괄호 Link 실버 4티어 문제 문제 괄호 문자열(Parenthesis String, PS)은 두 개의 괄호 기호인 ‘(’ 와 ‘)’ 만으로 구성되어 있는 문자열이다. 그 중에서 괄호의 모양이 바르게 구성된 문자열을 올바른 괄호 문자열(Valid PS, VPS)이라고 부른다. 한 쌍의 괄호 기호로 된 “( )” 문자열은 기본 ...

LeetCode - 48. Rotate image(MJ)

#48. Rotate image LeetCode의 Medium등급의 문제이다. 📖Description You are given an n x n 2D matrix representing an image, rotate the image by 90 degrees (clockwise). You have to rotate the image in-place...

LeetCode - 1. Two sum (MJ)

#1. Two sum LeetCode의 Easy단계 문제이다. 들어가기 앞서, 선배님께서 아량을 배풀어주셔서 이 문제는 안 올려도 되지만 그래도 올린다!! (그래서 스터디에서 한 것 만큼 꼼꼼하지 않을 수 있다) 📖Description Given an array of integers nums and an integer target, return ...

백준 - 9012. 괄호(MJ)

#9012. 괄호 백준 사이트의 실버 4티어인 문제이다. 이번 문제는 ‘단계별 문제풀기’에서 스택에 있는 문제를 가져왔다. 자료구조를 탄탄히 해야 할 것 같아서 스택의 기초가 되는 문제를 가져왔다. 📖Problem 괄호 문자열(Parenthesis String, PS)은 두 개의 괄호 기호인 ‘(’ 와 ‘)’ 만으로 구성되어 있는 문자열이다. ...

BOJ - 9012. 괄호

[문제] 괄호 문자열(Parenthesis String, PS)은 두 개의 괄호 기호인 ‘(’ 와 ‘)’ 만으로 구성되어 있는 문자열이다. 그 중에서 괄호의 모양이 바르게 구성된 문자열을 올바른 괄호 문자열(Valid PS, VPS)이라고 부른다. 한 쌍의 괄호 기호로 된 “( )” 문자열은 기본 VPS 이라고 부른다. 만일 x 가 VPS 라면 이것...

LeetCode - 1971. Find-if-Path-Exists-in-Graph

문제 There is a bi-directional graph with n vertices, where each vertex is labeled from 0 to n - 1 (inclusive). The edges in the graph are represented as a 2D integer array edges, where each edges[i...

LeetCode - 1971. Find if Path Exists in Graph (MJ)

1971. Find if Path Exists in Graph leeetcode문제이고, 등급은 easy이다. 📖Description There is a bi-directional graph with n vertices, where each vertex is labeled from 0 to n - 1 (inclusive). The edges i...

백준 - 2887. 행성터널(MJ)

#2887. 행성터널 백준사이트의 플래티넘 5티어 문제이다. 📖Description 우주에 있는 왕국은 N개의 행성으로 이루어져 있다. 민혁이는 이 행성을 효율적으로 지배하기 위해서 행성을 연결하는 터널을 만들려고 한다. 행성은 3차원 좌표위의 한 점으로 생각하면 된다. 두 행성 A(xA, yA, zA)와 B(xB,...