EUNO.NEWS EUNO.NEWS
  • All (19986) +161
  • AI (3082) +11
  • DevOps (900) +5
  • Software (10279) +122
  • IT (5679) +23
  • Education (45)
  • Notice (1)
  • All (19986) +161
    • AI (3082) +11
    • DevOps (900) +5
    • Software (10279) +122
    • IT (5679) +23
    • Education (45)
  • Notice (1)
  • All (19986) +161
  • AI (3082) +11
  • DevOps (900) +5
  • Software (10279) +122
  • IT (5679) +23
  • Education (45)
  • Notice (1)
Sources Tags Search
한국어 English 中文
  • 11시간 전 · software

    🔲 초보자용 가이드 ‘Maximum Side Length of a Square’ – LeetCode 1292 (C++, Python, JavaScript)

    🔲 초보자 친화 가이드 “Maximum Side Length of a Square” – LeetCode 1292 !커버 이미지 for 초보자 친화 가이드 ‘Maximum Side Length of a Square’ – LeetC...

    #leetcode #algorithm #matrix #prefix-sum #sliding-window #c++ #python #javascript #coding-interview #max-square
  • 23시간 전 · software

    C++에서 빈도별 요소 정렬 (Map vs Bucket 접근법)

    문제 아이디어: 배열이 주어지면, 요소들을 빈도수 내림차순으로 정렬하고 가장 빈번한 요소가 먼저 나오도록 배열을 재구성합니다. 예시 입력: 1,...

    #c++ #frequency-sorting #unordered_map #sorting #algorithm #vectors #data-structures
  • 1일 전 · software

    🧩 초보자용 가이드 'Largest Magic Square' – LeetCode 1895 (C++, Python, JavaScript)

    🧩 초보자 친화 가이드 “Largest Magic Square” – LeetCode 1895 C++, Python, JavaScript 표지 이미지 https://media2.dev.to/dynamic/image/width=1000,height=...

    #LeetCode #magic square #algorithm #C++ #Python #JavaScript #grid #coding challenge
  • 1일 전 · software

    9일차: 반복 vs 재귀: 성능 분석 (팩토리얼)

    재귀 vs. 반복 재귀는 특히 트리와 같은 경우에 코드를 더 깔끔하게 작성할 수 있고 읽기 쉽지만, 비용이 있다: space complexity. - 반복은…

    #recursion #iteration #factorial #performance #space-complexity #C #algorithm
  • 2일 전 · software

    Java 솔루션: 중복 괄호 감지 O(N)

    문제: 문자열 s가 균형 잡힌 식(balanced expression)을 나타낼 때, 해당 식에 중복된 괄호(redundant parentheses)가 있는지 판단한다. 괄호 한 쌍이 중복되었다고 하는 경우는 …

    #java #redundant-parentheses #algorithm #stack #O(N) #coding-interview #expression-parsing
  • 4일 전 · software

    🧱 초보자용 가이드 ‘그리드에서 정사각형 구멍의 면적 최대화’ – LeetCode 2943 (C++, Python, JavaScript)

    Problem Overview 당신에게 주어진 것은: - 격자(grid) 내의 내부 수평 및 수직 막대의 개수를 나타내는 두 정수 n과 m. - 두 배열 arrays, hBars와 vBars, listing…

    #LeetCode #algorithm #grid #square-hole #C++ #Python #JavaScript #coding-challenge
  • 5일 전 · software

    배열에서 첫 번째 반복 요소 (C++)

    왜 내 첫 번째 접근 방식이 잘못됐는가 — 그리고 그것을 어떻게 고쳤는가 문제 명확화 매우 중요 작업은 첫 번째 등장 인덱스가 작은 요소를 찾는 것입니다...

    #C++ #array #first repeating element #algorithm #brute-force #coding interview #problem solving
  • 6일 전 · software

    배열에서 모든 중복 요소 찾기 (C++)

    문제 요약 배열에서 두 번 이상 나타나는 모든 요소를 식별하고, 각 중복 요소는 한 번만 보고한다. 예시 입력: 1, 2, 3, 2, 4, 1 출력: ...

    #c++ #duplicate-elements #array-algorithm #frequency-array #unordered_map #coding-challenge #algorithm
  • 1주 전 · software

    🧱 초보자용 가이드 'Maximal Rectangle' – LeetCode 85 (C++, Python, JavaScript)

    🧱 초보자 친화 가이드 “Maximal Rectangle” – LeetCode 85 C++, Python, JavaScript! 커버 이미지: 🧱 초보자 친화 가이드 ‘Maximal Rectangle’ – LeetCode.

    #leetcode #maximal-rectangle #algorithm #data-structures #c++ #python #javascript #histogram #binary-matrix #coding-interview
  • 1주 전 · software

    🧶 초보자용 가이드 ‘Minimum ASCII Delete Sum for Two Strings’ – LeetCode 712 (C++, Python, JavaScript)

    🧶 초보자 친화 가이드 ‘Minimum ASCII Delete Sum for Two Strings’ – LeetCode 712 C++, Python, JavaScript 표지 이미지

    #LeetCode #ASCII delete sum #dynamic programming #C++ #Python #JavaScript #algorithm #LCS #edit distance
  • 1주 전 · software

    두 포인터 (양쪽 끝)

    개요 이 패턴은 데이터 구조인 배열이나 문자열의 양쪽 끝에서 시작하여 서로를 향해 이동하는 두 개의 포인터를 사용합니다. 주로 다음과 같은 경우에 사용됩니다: -...

    #two pointers #algorithm #data structures #array #string #time complexity #O(N) #coding interview #pattern
  • 1주 전 · software

    🌠초보자 친화 가이드 ‘가장 깊은 노드들을 모두 포함하는 가장 작은 서브트리’ – LeetCode 865 (C++, Python, JavaScript)

    !표지 이미지: 🌠초보자 친화 가이드 ‘Smallest Subtree with all the Deepest Nodes’ – LeetCode 865 C++, Python, JavaScript https://media2.dev.to/dynamic/ima

    #leetcode #binary-tree #algorithm #recursion #depth-first-search #c++ #python #javascript

Newer posts

Older posts
EUNO.NEWS
RSS GitHub © 2026