Anything

고정 헤더 영역

글 제목

메뉴 레이어

Anything

메뉴 리스트

    • 분류 전체보기
      • Troubleshooting
      • Codility Lessons 풀이
      • 백준 알고리즘 풀이
      • 프로그래머스 코딩테스트 풀이
      • 업무 이력
      • MCP

    검색 레이어

    Anything

    검색 영역

    컨텐츠 검색

    분류 전체보기

    • [Lesson 5] Prefix Sums - MinAvgTwoSlice

      2025.01.09 by 발발개발

    • [Lesson 6] Sorting - MaxProductOfThree

      2025.01.04 by 발발개발

    • [Lesson 6] Sorting - Distinct

      2025.01.04 by 발발개발

    • [Lesson 5] Prefix Sums - GenomicRangeQuery

      2025.01.03 by 발발개발

    [Lesson 5] Prefix Sums - MinAvgTwoSlice

    https://app.codility.com/programmers/lessons/5-prefix_sums/min_avg_two_slice/ MinAvgTwoSlice coding task - Learn to Code - CodilityFind the minimal average of any slice containing at least two elements.app.codility.comclass Solution { public int solution(int[] A) { double minAvg = Double.MAX_VALUE; int idx = 0; for (int i = 0; i

    Codility Lessons 풀이 2025. 1. 9. 13:44

    [Lesson 6] Sorting - MaxProductOfThree

    https://app.codility.com/programmers/lessons/6-sorting/max_product_of_three/ MaxProductOfThree coding task - Learn to Code - CodilityMaximize A[P] * A[Q] * A[R] for any triplet (P, Q, R).app.codility.comimport java.util.Arrays;class Solution { public int solution(int[] A) { int negativeNumCnt = 0; for (int num : A) { if (num = 2) { result = Math.max(result,..

    Codility Lessons 풀이 2025. 1. 4. 18:00

    [Lesson 6] Sorting - Distinct

    https://app.codility.com/programmers/lessons/6-sorting/distinct/ Distinct coding task - Learn to Code - CodilityCompute number of distinct values in an array.app.codility.comimport java.util.HashSet;import java.util.Set;class Solution { public int solution(int[] A) { Set set = new HashSet(); for (int num : A) { set.add(num); } return set...

    Codility Lessons 풀이 2025. 1. 4. 17:38

    [Lesson 5] Prefix Sums - GenomicRangeQuery

    https://app.codility.com/programmers/lessons/5-prefix_sums/genomic_range_query/ GenomicRangeQuery coding task - Learn to Code - CodilityFind the minimal nucleotide from a range of sequence DNA.app.codility.comclass Solution { public int[] solution(String S, int[] P, int[] Q) { char[] chArr = S.toCharArray(); int[] aCntArr = new int[100001]; int[] cCntArr = new int[100001]..

    Codility Lessons 풀이 2025. 1. 3. 13:31

    페이징

    이전
    1 2 3 4 5 6 7 8 ··· 116
    다음
    wjdwo951219@gmail.com
    Resume

    티스토리툴바