일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 메탈퍼즐
- 알고리즘테스트
- 잠실새내
- 하스스톤
- 밥먹고
- 뜨아거
- 나쫌
- 코테
- 취미
- 메일우유
- 서울제빵소
- 코딩테스트
- 바질토마토뭐시기
- 미앤아이
- 발더스게이트
- 노노그램
- LeetCode
- javascript
- 토이프로젝트
- 3d퍼즐
- 발더스모드
- DIY
- 눈알빠지겠네
- 송리단
- 버즈2프로
- 천등
- 게임
- 맛집
- 발더스3
- 누룽지소금빵
- Today
- Total
목록2022/11/24 (13)
.Zzumbong
여느 때처럼 침착맨 채널을 보고 댓글을 보는데 어라? 이게 모야 @user-* 로 된 아이디들이 많이 보였다. 닉네임이 부적절해서 강제 변경되었다기엔 90% 이상의 사람들이 이런 식이였다. 그 이유는 handle 이라는 기능이 업데이트 되었는데, youtube.com/asdasdas 이러첨 고유 주소가 너무 길고 복잡했기 때문에 변경되는 것같다. 당장은 댓글부터 업데이트 된듯 내 핸들 내임을 변경하기 https://www.youtube.com/handle 위 사이트에 접속하여 핸들 변경 클릭 당장은 많은 사람들이 변경하지 못해서 짧고 좋은 닉네임들을 선점할 수 있다. 말은 예약으로 되어있는데 확인하자마자 댓글을 써봤는데 잘 나온다. 아마도 몇 달전 메일로 handle 기능 소개 메일에서 오픈된 주소라서 ..
가끔 머리아플때 쉬고 싶을때 하는 게임 중 하나로 하스스톤 전장이 있다. 오늘 너무 잘풀리는 판이 있어 신나가지고 블로그에도 올린다. 특히 오주마트가 소환하는 촉수에도 퀘스트가 적용된다. 생전 처음 격는 생각하는대로 이루어지는 술술 풀리는 전장이였다. 짜릿해
동네에 역으로 지나다닐 때마다 한번 가볼까 말까 하던 중화일상이라는 중식당이다. 나는 처음가는 중식당에서는 무조건 간짜장을 시키거나 짜장을 시켜먹는 편이다. 그곳이 짬뽕 전문점이라도 짜장부터 시키는 편이다. 중식당의 실력은 짜장에서 나온다고 믿는다. 그래서 삼성유니간짜장을 시켰다. 주방장께선 참된 간짜장이 무엇인지 아시는 진정한 "중식 쉐프"시다. 서울에서 찾아 볼 수 없는 후라이까지! 감격스럽다. 총평. 식사 가격들은 만원초반대이고 기본 짜장은 7천원이다. 동네 물가에 비하면 비싸진 않고 적당하다. 간짜장맛은 지난 10년간 먹었던 간짜장 중에 원탑이다. 물을 섞어 사기치는 간짜장이 아닌 진짜 간짜장이고 볶은 춘장 특유에 텁텁한 맛이 없다. 감칠맛이 굉장히 쌔고 해물과 재료들도 신선하다. 맛있는 짜장을 ..
문제 설명 Given an m x n grid of characters board and a string word, return true if word exists in the grid. The word can be constructed from letters of sequentially adjacent cells, where adjacent cells are horizontally or vertically neighboring. The same letter cell may not be used more than once. m x n 문자열 그리드 board가 주어지고, 이 board에 word가 있다면 true를 return 한다. 단어는 가로 세로로 붙어있어야하고 한번 사용한 글자 칸은 두 번이상 사..
문제 설명 Given a string s, you can transform every letter individually to be lowercase or uppercase to create another string. Return a list of all possible strings we could create. Return the output in any order. String s 를 받아서 개별적으로 소문자나 대문자로 변환하여, 만들 수 있는 모든 문자열을 Array로 반환한다. 순서는 상관없다. 입출력 예 Example 1: Input: s = "a1b2" Output: ["a1b2","a1B2","A1b2","A1B2"] Example 2: Input: s = "3z4" Output: ["3..
문제 설명 A triplet is an array of three integers. You are given a 2D integer array triplets, where triplets[i] = [ai, bi, ci] describes the ith triplet. You are also given an integer array target = [x, y, z] that describes the triplet you want to obtain. To obtain target, you may apply the following operation on triplets any number of times (possibly zero): Choose two indices (0-indexed) i and j (i..
문제 설명 Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". 문자열 배열 중에 가장 긴 공통 접두사를 찾는 문제, 없으면 ''을 리턴 입출력 예 Example 1: Input: strs = ["flower","flow","flight"] Output: "fl" Example 2: Input: strs = ["dog","racecar","car"] Output: "" Explanation: There is no common prefix among the input strings. Constraints 1
문제 설명 You are given an m x n matrix maze (0-indexed) with empty cells (represented as '.') and walls (represented as '+'). You are also given the entrance of the maze, where entrance = [entrancerow, entrancecol] denotes the row and column of the cell you are initially standing at. In one step, you can move one cell up, down, left, or right. You cannot step into a cell with a wall, and you cannot..
문제 설명 Given an array nums of distinct integers, return all the possible permutations. You can return the answer in any order. 입출력 예 Example 1: Input: nums = [1,2,3] Output: [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]] Example 2: Input: nums = [0,1] Output: [[0,1],[1,0]] Example 3: Input: nums = [1] Output: [[1]] Constraints 1
문제 설명 Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, 2 is written as II in Roman numeral, just two ones added together. 12 is written as XII, which is simply X + II. The number 27 is written as XXVII, which is XX + V + II. Roman numerals are usually written largest to smallest from left to right. However, the numeral for four is not IIII. Instead,..
문제 설명 Given a string s, return the longest palindromic substring in s. palindromic: A string is palindromic if it reads the same forward and backward. 입출력 예 Example 1: Input: s = "babad" Output: "bab" Explanation: "aba" is also a valid answer. Example 2: Input: s = "cbbd" Output: "bb" Constraints 1 0; i--) { for(let j = 0; j answer.length){ const word = s.slice(j, i); ..
문제 설명 Given a string s representing a valid expression, implement a basic calculator to evaluate it, and return the result of the evaluation. Note: You are not allowed to use any built-in function which evaluates strings as mathematical expressions, such as eval(). 입출력 예 Example 1: Input: s = "1 + 1" Output: 2 Example 2: Input: s = " 2-1 + 2 " Output: 3 Example 3: Input: s = "(1+(4+5+2)-3)+(6+8)..
문제 설명 A sentence consists of lowercase letters ('a' to 'z'), digits ('0' to '9'), hyphens ('-'), punctuation marks ('!', '.', and ','), and spaces (' ') only. Each sentence can be broken down into one or more tokens separated by one or more spaces ' '. A token is a valid word if all three of the following are true: It only contains lowercase letters, hyphens, and/or punctuation (no digits). Ther..