Given a triangle array, return the minimum path sum from top to bottom.
For each step, you may move to an adjacent number of the row below. More formally, if you are on index i on the current row, you may move to either index i or index i + 1 on the next row.
Given an m x n binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area.
Given a linked list, swap every two adjacent nodes and return its head. You must solve the problem without modifying the values in the list's nodes (i.e., only nodes themselves may be changed.)
Given the head of a linked list and an integer val, remove all the nodes of the linked list that has Node.val == val, and return the new head.
오랜만에 블로그를 수정했다.
수정을 하게 된 이유는 버그(?)를 제보받게 되어서 하게 되었다.
19.10.12일에 블로그에 Buy me Coffee 서비스를 추가했다.
해당 서비스는 커피 한 잔 정도를 감사의 마음으로 전달할 수 있는 간편 이체 서비스이다.
사실 저걸 붙였던 이유는 그냥 재밌어 보여서 붙였고
누가 나에게 커피를 보내주겠어? 라는 생각으로 기억 속에서 잊고 지내다
우연치 않게 블로그 방문자분을 실제로 만나게 되었는데
그 분께서 저 서비스를 이용해서 마음을 전달하고 싶었는데
한국에서는 지원이 안 된다는 이야기를 들었다. (띠용)
그래서 어차피 내 블로그의 방문자는 대부분 한국인이니
이참에 Buy me Coffee 대신 카카오페이 QR 코드를 넣기로 했다. 😀
Given an array of integers heights representing the histogram's bar height where the width of each bar is 1, return the area of the largest rectangle in the histogram.