Posted 2022-04-01알고리즘 / LeetCodeLeetCode - Jump Game II (Javascript) 문제 설명 배열의 끝에 다다를 수 있는 최소 점프 횟수를 구하면 되는 문제다.배열 안의 모든 수는 자연수다. Read more
Posted 2022-03-26알고리즘 / LeetCodeLeetCode - Number of Closed Islands (Javascript) Description 1이라는 물에 둘러싸인 0이라는 섬의 개수를 구하는 문제다. Read more
Posted 2022-03-24알고리즘 / LeetCodeLeetCode - Flood Fill (Javascript) 타겟 넘버와 연결되어 있는 요소들을 모두 새로운 색(숫자)으로 변환시키는 문제였다. 문제 설명Read more
Posted 2022-03-24알고리즘 / LeetCodeLeetCode - Max Area of Island (Javascript) Description 위에서 풀었던 문제와 굉장히 유사하다. 그냥 그 문제에서 최대 넓이만 구하면 되는 문제다! Read more
Posted 2022-03-24알고리즘 / LeetCodeLeetCode - Number of Islands (Javascript) DescriptionGiven an m x n 2D binary grid grid which represents a map of '1's (land) and '0's (water), return the number of islands.Read more