| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 자바스크립트
- 알고리즘
- Binary Search
- 방송대
- javascript
- 그리디
- 자바
- 이진탐색
- dynamic programming
- algorithm
- 코테
- DP
- LeetCode
- 깃
- Git
- boj
- two pointers
- 컴퓨터과학과
- 완전탐색
- 탐욕알고리즘
- 투포인터
- 방통대
- greedy
- 코딩
- sliding window
- it
- 백준
- java
- 방송통신대학교
- 리트코드
- Today
- Total
목록LeetCode (22)
개발이 취미인 주니어 기획자
#Sorting #EASY Average Salary Excluding the Minimum and Maximum Salary - LeetCode Can you solve this real interview question? Average Salary Excluding the Minimum and Maximum Salary - You are given an array of unique integers salary where salary[i] is the salary of the ith employee. Return the average salary of employees excluding the m leetcode.com 🌷 문제 설명 ✏️ LeetCode 연습문제: Average Salary Exclu..
#Dynamic Programming(DP) #EASY Counting Bits - LeetCode Can you solve this real interview question? Counting Bits - Given an integer n, return an array ans of length n + 1 such that for each i (0
#해시맵 #EASY Roman to Integer - LeetCode Can you solve this real interview question? Roman to Integer - Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I 1 V 5 X 10 L 50 C 100 D 500 M 1000 For example, 2 is written as II in Roman numeral, just tw leetcode.com 🌷 문제 설명 ✏️ LeetCode 연습문제: Roman to Integer Roman numerals are represented by seven different..
#투포인터 #EASY Palindrome Number - LeetCode Can you solve this real interview question? Palindrome Number - Given an integer x, return true if x is a palindrome, and false otherwise. Example 1: Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left. Ex leetcode.com 🌷 문제 설명 ✏️ LeetCode 연습문제: Search Insert Position Given an integer x, return true if x is a..
#STACK #스택 #MEDIUM Search Insert Position - LeetCode Can you solve this real interview question? Search Insert Position - Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order. You must w leetcode.com 🌷 문제 설명 ✏️ LeetCode 연습문제: Asteroid Collision We are given an array asteroid..
#DFS #EASY Flood Fill - LeetCode Can you solve this real interview question? Flood Fill - An image is represented by an m x n integer grid image where image[i][j] represents the pixel value of the image. You are also given three integers sr, sc, and color. You should perform a flood fill leetcode.com 🌷 문제 설명 ✏️ LeetCode 연습문제: Flood Fill An image is represented by an m x n integer grid image whe..
Two Sum - LeetCode Can you solve this real interview question? Two Sum - Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not leetcode.com #해쉬맵 #EASY 🌷 문제 설명 ✏️ LeetCode 연습문제: Two Sum Given an array of integers nums and an integer target, return ind..
#슬라이딩 윈도우 #MEDIUM Permutation in String - LeetCode Can you solve this real interview question? Permutation in String - Given two strings s1 and s2, return true if s2 contains a permutation of s1, or false otherwise. In other words, return true if one of s1's permutations is the substring of s2. Example leetcode.com 🌷 문제 설명 ✏️ LeetCode 연습문제: Permutation in String Given two strings s1 and s2, ret..
#투포인터 #MEDIUM Remove Nth Node From End of List - LeetCode Can you solve this real interview question? Remove Nth Node From End of List - Given the head of a linked list, remove the nth node from the end of the list and return its head. Example 1: [https://assets.leetcode.com/uploads/2020/10/03/remove_ex1.jpg] leetcode.com 🌷 문제 설명 ✏️ LeetCode 연습문제: Remove Nth Node From End of List Given the head ..