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

    ⚙️ 소프트웨어 컴파일이란?

    일반적인 컴퓨팅에서 Compilation은 C++, Rust, Java와 같이 인간이 읽을 수 있는 high‑level 프로그래밍 언어를 low‑level으로 변환하는 과정이다.

    #compilation #compiler #programming-languages #C++ #Rust #Java #build-process #software-development
  • 3일 전 · software

    C# 조건문 (if, else, switch)

    원본은 if Statement에 처음 게시되었습니다. if 문은 조건이 true일 때 블록을 실행합니다. csharp int number = 10; if number > 5 { Console.WriteLine'Num...

    #c# #conditional statements #if-else #switch #programming tutorial #decision structures #code examples
  • 3일 전 · software

    6년 이상 C# 사용 후 Rust로 전환 계획

    저는 C로 6~7년 동안 작업해 왔지만, 시간이 지나면서 점점 부피가 크고 제한적인 느낌이 듭니다. 사물의 동작 방식을 정확하고 low‑level로 제어하던 것이 그리워집니다.

    #rust #c# #programming-languages #language-transition #systems-programming #low-level-control
  • 4일 전 · software

    C++로 오디오 스트리밍 시스템을 Vibe Coding 해봤습니다: 결과는 이렇습니다

    Letting the Vibes Drive: 분명히 말하자면, 나는 완전히 눈을 가리고 들어간 것이 아니다. 나는 오디오 스트리밍, 링 버퍼 등을 이해하고 있기 때문에 LLM을 올바른 방향으로 살짝 밀어넣었다.

    #C++ #audio streaming #vibe coding #LLM #software development #programming practices
  • 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
  • 4일 전 · software

    왜 Java 또는 C#를 공부해야 할까?

    ‘왜 Java 또는 C를 공부해야 하는가’에 대한 표지 이미지 https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploa...

    #java #c# #programming-languages #career-development #backend-development #software-engineering #high-demand-skills
  • 5일 전 · software

    C# dynamic은 함정이다: 누수가 퍼지기 전에 차단하라 (Dapper 사용자라면 꼭 읽어야 함)

    !Cover image for C dynamic는 함정 문입니다: 누수가 퍼지기 전에 차단하세요. Dapper 사용자라면 반드시 읽어야 합니다. https://media2.dev.to/dynamic/image/width=1000,height=420...

    #c# #dynamic #roslyn-analyzer #dapper #.net #static-typing #code-quality
  • 5일 전 · software

    C#로 PowerPoint (PPT/PPTX)를 PDF로 변환

    Spire.Presentation을 사용한 C에서 PowerPoint PPT/PPTX를 PDF로 변환하기 일상적인 개발 및 사무 작업에서 PowerPoint 파일을 PDF로 변환하는 것은 높은 우선순위입니다.

    #C# #.NET #PDF conversion #PowerPoint #Spire.Presentation #NuGet

Newer posts

Older posts
EUNO.NEWS
RSS GitHub © 2026