• Skip to primary navigation
  • Skip to content
  • Skip to footer
SW Yoo's note SW Yoo's note Whoever knocks presistently, ends by entering.
  • Category
  • Tag
  • Search
    1. Home
    2. /
    3. Programming
    4. /
    5. Python
    6. /
    7. Codingtest
    8. /
    9. 11/14 크기가 작은 부분 문자열
    • Computer Science
      • Category
      • Tag

    11/14 크기가 작은 부분 문자열

    2023-11-14 최대 1 분 소요

    On This Page

    https://school.programmers.co.kr/learn/courses/30/lessons/147355

    .

    나의 풀이

    def solution(t, p) :
        answer = 0
        for idx in range(len(t) - len(p) + 1) :
            if int(t[idx : idx + len(p)]) <= int(p) :
                answer += 1
    	return answer
    

    태그: codingTest, Programming, python

    카테고리: codingTest, Programming, python

    업데이트: 2023-11-14

    공유하기

    Twitter Facebook LinkedIn
    이전 다음

    댓글남기기

    참고

    [LLM] Mercury Coder

    2025-07-25 최대 1 분 소요

    개요

    [LLM] Self-RAG : Learning To Retrieve, Generate, and Critique Through Self-Reflection

    2025-07-25 1 분 소요

    Self-RAG

    [llm] 파인튜닝 기법

    2025-07-25 7 분 소요

    layout: single title: "[LLM] 해부학 PDF 질의응답 RAG W17-20" categories: [Programming, LLM, RAG, Project] tag: [Programming, LLM, RAG, Project] toc: true author_pr...

    [LLM] MCP(Model Context Protocol)

    2025-07-25 1 분 소요

    개요

    • 팔로우:
    • GitHub
    • 피드
    © 2025 SW Yoo. Powered by Jekyll & Minimal Mistakes.