본문 바로가기 메뉴 바로가기

허서기의 블로그

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

허서기의 블로그

검색하기 폼
  • 분류 전체보기 (36)
    • 독서 (0)
    • 개발 (34)
      • 알고리즘 (24)
      • 프로젝트 (4)
      • 공부 (3)
  • 방명록

개발 (34)
[leetcode 매일 풀기] 115. distinct subsequences

오늘 리뷰할 문제는 distinct subsequences이다. https://leetcode.com/problems/distinct-subsequences/ Distinct Subsequences - LeetCode Can you solve this real interview question? Distinct Subsequences - Given two strings s and t, return the number of distinct subsequences of s which equals t. The test cases are generated so that the answer fits on a 32-bit signed integer. Example 1: In leetcode.com 문자열 s, t가..

개발/알고리즘 2023. 12. 12. 22:20
[leetcode 매일 풀기] 87. scramble string

오늘 리뷰할 문제는 scramble string 입니다. https://leetcode.com/problems/scramble-string/ Scramble String - LeetCode Can you solve this real interview question? Scramble String - We can scramble a string s to get a string t using the following algorithm: 1. If the length of the string is 1, stop. 2. If the length of the string is > 1, do the following: * Split the string leetcode.com 이 문제는 두개의 문자열이 들어왔을 때,..

개발/알고리즘 2023. 12. 11. 22:16
[leetcode 매일 풀기] 85. maximum rectangle

오늘 리뷰할 문제는 85 maximum rectangle 이다. https://leetcode.com/problems/maximal-rectangle/ Maximal Rectangle - LeetCode Can you solve this real interview question? Maximal Rectangle - Given a rows x cols binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. Example 1: [https://assets.leetcode.com/uploads/2020/09/14/ma leetcode.com 0과 1로 이루어진 2차원 배열에..

개발/알고리즘 2023. 12. 10. 10:59
[leetcode 매일 풀기] 76. minimum window substring

오늘 리뷰할 문제는 78 minimum window substring이다. https://leetcode.com/problems/minimum-window-substring/ Minimum Window Substring - LeetCode Can you solve this real interview question? Minimum Window Substring - Given two strings s and t of lengths m and n respectively, return the minimum window substring of s such that every character in t (including duplicates) is included in the window. If t leetcod..

개발/알고리즘 2023. 12. 9. 09:08
[leetcode 매일 풀기] 68. text justification

오늘 리뷰할 문제는 68.text justification 입니다. https://leetcode.com/problems/text-justification/ Text Justification - LeetCode Can you solve this real interview question? Text Justification - Given an array of strings words and a width maxWidth, format the text such that each line has exactly maxWidth characters and is fully (left and right) justified. You should pack your words i leetcode.com 문제 설명을 하자면..

개발/알고리즘 2023. 12. 8. 12:46
[leetcode 매일 풀기] 65. valid number

오늘 리뷰할 문제는 65. valid number 이다. https://leetcode.com/problems/valid-number/ Valid Number - LeetCode Can you solve this real interview question? Valid Number - A valid number can be split up into these components (in order): 1. A decimal number or an integer. 2. (Optional) An 'e' or 'E', followed by an integer. A decimal number can be split up into these leetcode.com 이 문제는 문자열이, 숫자로 치환가능한지를 판별하는 ..

개발/알고리즘 2023. 12. 7. 19:57
[leetcode 매일 풀기] 60 permutation sequence

오늘 리뷰할 문제는 permutation sequence이다. https://leetcode.com/problems/permutation-sequence/ Permutation Sequence - LeetCode Can you solve this real interview question? Permutation Sequence - The set [1, 2, 3, ..., n] contains a total of n! unique permutations. By listing and labeling all of the permutations in order, we get the following sequence for n = 3: 1. "123" 2. "132" 3 leetcode.com 이 문제는 1.....

개발/알고리즘 2023. 12. 6. 08:14
[leetcode 매일풀기] 52. n queens 2

오늘 리뷰할 문제는 N queens 2이다. https://leetcode.com/problems/n-queens-ii/ N-Queens II - LeetCode Can you solve this real interview question? N-Queens II - The n-queens puzzle is the problem of placing n queens on an n x n chessboard such that no two queens attack each other. Given an integer n, return the number of distinct solutions to the n-queens leetcode.com 이번 문제는 사실 지난 문제보다 쉬워졌다고 보면 되는데, 왜냐하면 지난..

개발/알고리즘 2023. 12. 5. 08:12
[leetcode 매일 풀기] 51. n queens

오늘 리뷰할 문제는 N queens이다. https://leetcode.com/problems/n-queens/description/ N-Queens - LeetCode Can you solve this real interview question? N-Queens - The n-queens puzzle is the problem of placing n queens on an n x n chessboard such that no two queens attack each other. Given an integer n, return all distinct solutions to the n-queens puzzle. You ma leetcode.com 문제를 가볍게 설명해보자면 체스에서 퀸은 수직, 수평, 그리..

개발/알고리즘 2023. 12. 4. 08:28
[leetcode 매일 풀기] 44. wildcard matching

오늘 리뷰할 문제는 wildcard matching이라는 문제이다. https://leetcode.com/problems/wildcard-matching/description/ Wildcard Matching - LeetCode Can you solve this real interview question? Wildcard Matching - Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*' where: * '?' Matches any single character. * '*' Matches any sequence of character leetcode.com ..

개발/알고리즘 2023. 12. 3. 09:58
이전 1 2 3 4 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • wildcard matching
  • 글또 10기
  • mlse
  • permutation sequence
  • first missing positive
  • hard mode challenge
  • Python
  • slay the spire에 진심인편
  • valid number
  • binary tree maximum path sum
  • text justification
  • palindrome partitioning 2
  • leetcode 매일풀기
  • 가상면접 사례로 배우는 대규모 시스템 설계
  • sudoku solver
  • word ladder 2
  • leetcode
  • 회고
  • otel
  • substring with concatenation of all words
  • maximum rectangle
  • scramble string
  • 알고리즘
  • datalakehouse
  • best time to buy and sell stock 3
  • 개발자 글쓰기
  • distinct subsequences
  • longest valid parentheses
  • leetcode 매일 풀기
  • n queens 2
more
«   2025/05   »
일 월 화 수 목 금 토
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 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바