티스토리

.Zzumbong
검색하기 블로그 홈

블로그 홈

.Zzumbong

error404.co.kr/m

Front-End 개발자의 탐험 일지!

구독자
0
방명록 방문하기

주요 글 목록

  • [leetCode/JS] 841. Keys and Rooms 난이도 [ 👿 😊 🤔 ] Hard Medium Easy 문제 설명 There are n rooms labeled from 0 to n - 1 and all the rooms are locked except for room 0. Your goal is to visit all the rooms. However, you cannot enter a locked room without having its key. When you visit a room, you may find a set of distinct keys in it. Each key has a number on it, denoting which room it unlocks, and you can take all of them with you to un.. 공감수 0 댓글수 0 2022. 12. 20.
  • [스팀 인디] 코어 키퍼 50시간 리뷰 인디 도트 게임 코어키퍼 50시간 리뷰! 게임 자체는 테라리아, 마크, 도트, 온라인 코옵, 크레프팅 태그로 설명할 수 있다. 얼리라서 컨텐츠가 없거나 먹튀가 있을 것 같아서 꼼꼼히 살펴봤는데 로드맵도 굉장히 탄탄했다. 업데이트 자체는 조금 느린편이지만 먹튀만 안해도 어디야.. 코어키퍼를 같이하려면 도구에 Dedicated Server를 열어서 같이하면 된다. 50시간 동안 2명이서 한 서버 여러 재료를 모아서 집을 꾸밀 수 도 있다. 마크처럼 바이옴이 있으나 완전 랜덤은 아니고 구역이 정해져있고 여러모로 생태계가 재미있게 꾸며져 있다. 숨겨져있는 것들도 많다 그리고 맵이 굉장히 큰데, 걸어서 이동하는 것이 힘들 정도다. 레일을 이용한 이동, 카트, 보트, 포탈 등이 오픈되니 걱정은 안해도 된다. 최근 .. 공감수 0 댓글수 0 2022. 12. 19.
  • [신천/새내 데이트] 소마드로잉카페 1인당 19900원! 최소 2시간 그림 가능, 대기자 없으면 좀 더 해도 되나봄 도안이라고 스케치가 프린팅된 캔버스가 있는데, 여자친구는 프로라서 당연 필요없고 나는 남자답게 그냥 하기로 ㄱㄱ 물감은 12색 기본 아크릴이고 붓은 송곳 같은 녀석이거나 흐물텅거리는 녀석들이 좀 있었다. 추가적인 형광색 계열의 물감이나 색연필, 파스텔, 마카가 조금있었는데 사용안함. 급하게 구글에 아크릴 풍경화 쳐서 그 중에 가장 맘에들었던 밤하늘 은하수가 있길래 천천히 구경 후 시작. 아이디어 감사! 생전 처음 캔버스에 그림 그려봤는데 정말 힘들었다. 붓들이 너무 힘이 없어서 잘 안뿌려졌다. 별은 칫솔로 하고 싶었는데 아쉽. 여자친구는 나와 자기 캐릭터를 만들어서 그렸다. 아크릴은 처음 사용하지만 예전 입시 미술하던 생각 .. 공감수 0 댓글수 0 2022. 12. 18.
  • [leetCode/JS] 739. Daily Temperatures 난이도 [ 🤔 ] Medium 문제 설명 Given an array of integers temperatures represents the daily temperatures, return an array answer such that answer[i] is the number of days you have to wait after the ith day to get a warmer temperature. If there is no future day for which this is possible, keep answer[i] == 0 instead. 일일 온도가 입력된 배열에서 더 따듯해지는 날까지의 일 수의 배열을 반환하면된다. 없으면 0으로 리턴한다. 입출력 예 Example 1: Input: temp.. 공감수 0 댓글수 0 2022. 12. 18.
  • [leetCode/JS] 150. Evaluate Reverse Polish Notation 난이도 [ 🤔 ] Medium 문제 설명 Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, *, and /. Each operand may be an integer or another expression. Note that division between two integers should truncate toward zero. It is guaranteed that the given RPN expression is always valid. That means the expression would always evaluate to a result, and there will n.. 공감수 0 댓글수 0 2022. 12. 17.
  • [leetCode/JS] 232. Implement Queue using Stacks 난이도 [ 😊 ] Easy 문제 설명 Implement a first in first out (FIFO) queue using only two stacks. The implemented queue should support all the functions of a normal queue (push, peek, pop, and empty). Implement the MyQueue class: void push(int x) Pushes element x to the back of the queue. int pop() Removes the element from the front of the queue and returns it. int peek() Returns the element at the front .. 공감수 0 댓글수 0 2022. 12. 16.
  • [leetCode/JS] 1143. Longest Common Subsequence 난이도 [ 🤔 ] Medium 문제 설명 Given two strings text1 and text2, return the length of their longest common subsequence. If there is no common subsequence, return 0. A subsequence of a string is a new string generated from the original string with some characters (can be none) deleted without changing the relative order of the remaining characters. For example, "ace" is a subsequence of "abcde". A commo.. 공감수 0 댓글수 0 2022. 12. 15.
  • [leetCode/JS] 152. Maximum Product Subarray 난이도 [ 🤔 ] Medium 문제 설명 Given an integer array nums, find a subarray that has the largest product, and return the product. The test cases are generated so that the answer will fit in a 32-bit integer. 연속된 element 중 곱했을 때, 가장큰 수를 return 한다. 입출력 예 Example 1: Input: nums = [2,3,-2,4] Output: 6 Explanation: [2,3] has the largest product 6. Example 2: Input: nums = [-2,0,-1] Output: 0 Explanation: The.. 공감수 0 댓글수 0 2022. 12. 14.
  • [leetCode/JS] 198. House Robber 난이도 [ 🤔 ] Medium 문제 설명 You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent houses have security systems connected and it will automatically contact the police if two adjacent houses were broken into on the same night. Given an integer array nums represent.. 공감수 0 댓글수 0 2022. 12. 14.
  • [leetCode/JS] 931. Minimum Falling Path Sum 난이도 [ 🤔 ] Medium 문제 설명 Given an n x n array of integers matrix, return the minimum sum of any falling path through matrix. A falling path starts at any element in the first row and chooses the element in the next row that is either directly below or diagonally left/right. Specifically, the next element from position (row, col) will be (row + 1, col - 1), (row + 1, col), or (row + 1, col + 1). n .. 공감수 0 댓글수 0 2022. 12. 13.