일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- React
- leetcode
- 메모리 배리어
- 프로그래머스
- socket
- 프론트엔드 스쿨
- 제로베이스 프론트엔드 스쿨
- dfs
- 자바스크립트
- JavaScript
- 알고리즘
- 구조체
- c#
- 백준
- 구현
- C++
- N과 M(2)
- 제로베이스
- 코딩테스트 스터디
- 서버
- 백트래킹
- 코딩테스트
- MemoryBarrier
- 문자열&연산자
- 완전탐색
- BFS
- map
- Algorithm
- Server
- 멀티스레드
- Today
- Total
목록Algorithm (4)
Written
https://leetcode.com/problems/binary-tree-inorder-traversal/submissions/905212431/ Given the root of a binary tree, return the inorder traversal of its nodes' values. => 이진트리의 루트노드가 주어졌을때 , 노드의 value값들을 중위순회하여 반환하는 문제입니다. Example 1: Input: root = [1,null,2,3] Output: [1,3,2] 재귀함수의 동작 방식에 대해서 잘 이해하고 있다면, 복잡하지 않게 풀어낼 수 있는 문제입니다. 중위순회의 정의대로 왼쪽 자식노드 -> 부모노드 -> 오른쪽자식노드순으로 val값을 찍어낼 수 있게끔 재귀함수를 이용하여 코..
https://leetcode.com/problems/reverse-integer/ Reverse Integer - LeetCode Reverse Integer - Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-231, 231 - 1], then return 0. Assume the environment does not allow you to store 64-bit in leetcode.com 입력으로 주어지는 32비트 정수 x가 있습니다. 그리고 x를 뒤집은 숫자를 리턴합니다. 만약 x를..
https://leetcode.com/problems/add-binary/ Add Binary - LeetCode Can you solve this real interview question? Add Binary - Given two binary strings a and b, return their sum as a binary string. Example 1: Input: a = "11", b = "1" Output: "100" Example 2: Input: a = "1010", b = "1011" Output: "10101" Constraints: * leetcode.com a와 b로 주어지는 두 이진수의 덧셈을 다시 이진수로 출력하는 문제입니다. Example 1: Input: a = "11", b..
https://leetcode.com/problems/plus-one/ Plus One - LeetCode Can you solve this real interview question? Plus One - You are given a large integer represented as an integer array digits, where each digits[i] is the ith digit of the integer. The digits are ordered from most significant to least significant in left-to- leetcode.com 입력으로 주어진 배열을 하나의 정수처럼 보고 거기에 +1을 더한 후 그렇게 구한 값을 배열에 옮겨서 출력하는 문제였습니다...