Skip links

  • Skip to primary navigation
  • Skip to content
  • Skip to footer
Taeham's Coding Blog Study & Share about tech and coding
  • Home
  • Categories
  • Tags
  • About
    Taehyoung Kim

    Taehyoung Kim

    공부하고, 기록하고, 공유합니다 : )

    • Seoul, South Korea
    • kthwork9934@gmail.com
    • Curriculum Vitae
    • Youtube
    • 📂 전체 글 수 82 개
    • STUDY
      • 음성인식 (5)
      • NLP (11)
      • ML (1)
      • MATH (1)
      • CS관련 (1)
      Coding Test
      • KAKAO (16)
      • BASIC (48)

    [Programmers] - 예산 (Level 1)

    On this page


    Summer/Winter Coding(~2018)
    LEVEL : 1

    문제 링크

    d = [1,3,2,5,4]
    budget = 9
    
    d.sort()
    cnt = 0
    for i in range(len(d)):
    
        budget -= d[i]
        if budget <= 0: break
    
        cnt += 1
    
    cnt
    
    3
    

    Tags: coding_test

    Categories: basic

    Updated: April 20, 2022

    Twitter Facebook LinkedIn
    Previous Next

    Comments

    You May Also Enjoy

    VQ-Wav2vec 논문 꼼꼼 리뷰 - 2편

    January 05 2023

    VQ-Wav2vec: Self-supervised learning of discrete speech representations

    VQ-Wav2vec 논문 꼼꼼 리뷰 - 1편

    December 30 2022

    VQ-Wav2vec: Self-supervised learning of discrete speech representations

    Wav2vec 논문 꼼꼼 리뷰 - 2편

    December 22 2022

    Wav2vec: Unsupervised pre-training for speech recognition

    Wav2vec 논문 꼼꼼 리뷰 - 1편

    December 21 2022

    Wav2vec: Unsupervised pre-training for speech recognition

    • Feed
    © 2024 Taeham. Powered by Jekyll & Minimal Mistakes.