Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- Common Child
- hackerrank
- 구슬탈출2
- 파이썬
- 격파르타 장점
- 해커랭크
- DFS: Connected Cell in a Grid
- 머신러닝
- [sqld]자격증합격
- candies
- 프로그래머스
- Recursion: Davis' Staircase
- Roads and Libraries
- 알고리즘
- programmers
- Max Array Sum
- Special String Again
- 야근지수
- Algorithm
- 매칭점수
- python
- BFS: Shortest Reach in a Graph
- 격파르타 후기
- Find the nearest clone
- Reverse Shuffle Merge
- 코딩테스트
- Interview Preparation Kit
- 피보나치 함수
- 격파르타 합격후기
Archives
- Today
- Total
목록abbreviation (1)
Archive
[Hackerrank] [Medium] Abbreviation
https://www.hackerrank.com/challenges/abbr/problem Abbreviation | HackerRank Make two strings equal www.hackerrank.com 풀이 두 개의 문자열 a, b를 입력받음. 문자열 a를 다음 두 가지 방법을 사용해 문자열 b를 만들 수 있으면 "YES"를, 아니면 "NO"를 출력하는 문제 문자열 a의 소문자를 대문자로 0개 이상 바꿀 수 있음. 문자열 a의 소문자를 모두 제거. a = AbcDE, b = ABDE일 때, ABcDE로 b -> B로 바꾼 뒤, 소문자를 모두 제거하면 ABDE가 되므로 b를 만들 수 있음. Dynamic programming을 사용해서 품. 처음에는 대소문자 상관없이 a의 j번째 문자열 = b의..
공부/Algorithm
2020. 9. 1. 15:34