https://school.programmers.co.kr/learn/courses/30/lessons/12927처음에 풀 때는 파이썬으로 위와 같이 풀었는데 O(n^2) 시간복잡도를 갖아서 그런가 효율성 테스트에서 계속 실패했다.그래서 아직 파이썬에서 자료구
https://leetcode.com/problems/trapping-rain-water/description/2중 for문을 활용하여 O(n^2) 시간복잡도가 나왔다..내 아이디어는 모든 칸을 순회하면서 min(왼쪽에서 가장 높은 벽과 오른쪽에서 가장 높은
https://leetcode.com/problems/two-sum/덧셈하여 타겟을 만들 수 있는 배열의 두 숫자 인덱스를 리턴하라가장 기본적으로 2중 for문을 이용하여 덧셈을 하는 방식을 이용하여 풀었다.위와 같이 계산하면 2중 for문으로 배열을 순회하기
225 큐를 이용한 스택 구현https://leetcode.com/problems/implement-stack-using-queues/description/232 스택을 이용한 큐https://leetcode.com/problems/implement-
https://leetcode.com/problems/binary-tree-inorder-traversal/description/?envType=daily-question&envId=2023-12-10시간복잡도 O(n).root node가 처음부터 null인
https://leetcode.com/problems/element-appearing-more-than-25-in-sorted-array/ 내 풀이 다른 풀이