분류 전체보기
-
문제집: https://www.acmicpc.net/workbook/by/BaaaaaaaaaaarkingDog 문제: https://www.acmicpc.net/problem/1958 이전 문제:LCS https://hyundoil.tistory.com/357LCS2 https://hyundoil.tistory.com/369LCS 문제 모음 : https://www.acmicpc.net/workbook/view/5080 문제문자열과 놀기를 세상에서 제일 좋아하는 영식이는 오늘도 문자열 2개의 LCS(Longest Common Subsequence)를 구하고 있었다. 어느 날 영식이는 조교들이 문자열 3개의 LCS를 구하는 것을 보았다. 영식이도 도전해 보았지만 실패하고 말았다.이제 우리가 할 일은 다음과..
[백준][파이썬][DP][LCS] 1958번: LCS3문제집: https://www.acmicpc.net/workbook/by/BaaaaaaaaaaarkingDog 문제: https://www.acmicpc.net/problem/1958 이전 문제:LCS https://hyundoil.tistory.com/357LCS2 https://hyundoil.tistory.com/369LCS 문제 모음 : https://www.acmicpc.net/workbook/view/5080 문제문자열과 놀기를 세상에서 제일 좋아하는 영식이는 오늘도 문자열 2개의 LCS(Longest Common Subsequence)를 구하고 있었다. 어느 날 영식이는 조교들이 문자열 3개의 LCS를 구하는 것을 보았다. 영식이도 도전해 보았지만 실패하고 말았다.이제 우리가 할 일은 다음과..
2024.09.25 -
문제집: https://www.acmicpc.net/workbook/by/BaaaaaaaaaaarkingDog 문제: https://www.acmicpc.net/problem/9252 이전 문제: LCS https://hyundoil.tistory.com/357 LCS 문제 모음 : https://www.acmicpc.net/workbook/view/5080문제LCS(Longest Common Subsequence, 최장 공통 부분 수열)문제는 두 수열이 주어졌을 때, 모두의 부분 수열이 되는 수열 중 가장 긴 것을 찾는 문제이다.예를 들어, ACAYKP와 CAPCAK의 LCS는 ACAK가 된다.입력첫째 줄과 둘째 줄에 두 문자열이 주어진다. 문자열은 알파벳 대문자로만 이루어져 있으며, 최대 1000글자..
⭐⭐⭐⭐[백준][파이썬][DP][LCS] 9252번: LCS2문제집: https://www.acmicpc.net/workbook/by/BaaaaaaaaaaarkingDog 문제: https://www.acmicpc.net/problem/9252 이전 문제: LCS https://hyundoil.tistory.com/357 LCS 문제 모음 : https://www.acmicpc.net/workbook/view/5080문제LCS(Longest Common Subsequence, 최장 공통 부분 수열)문제는 두 수열이 주어졌을 때, 모두의 부분 수열이 되는 수열 중 가장 긴 것을 찾는 문제이다.예를 들어, ACAYKP와 CAPCAK의 LCS는 ACAK가 된다.입력첫째 줄과 둘째 줄에 두 문자열이 주어진다. 문자열은 알파벳 대문자로만 이루어져 있으며, 최대 1000글자..
2024.09.25 -
언젠가 데이터분석을 Langchain을 이용해서 자동으로 EDA를 수행하고 전처리를 수행하며 insight까지 도출할 수 있는 데이터 분석 AI Agent를 만드는 것이 목표인데, PandasDataFrameOutputParser를 통해 구현할 수 있을 것 같다. PandasDataFrameOutputParserPandas DataFrame은 Python 프로그래밍 언어에서 널리 사용되는 데이터 구조로, 데이터 조작 및 분석을 위한 강력한 도구입니다. DataFrame은 구조화된 데이터를 효과적으로 다루기 위한 포괄적인 도구 세트를 제공하며, 이를 통해 데이터 정제, 변환 및 분석과 같은 다양한 작업을 수행할 수 있습니다.이 출력 파서는 사용자가 임의의 Pandas DataFrame을 지정하여 해당 Da..
LangChain을 이용한 데이터 분석 AI Agent 만들기언젠가 데이터분석을 Langchain을 이용해서 자동으로 EDA를 수행하고 전처리를 수행하며 insight까지 도출할 수 있는 데이터 분석 AI Agent를 만드는 것이 목표인데, PandasDataFrameOutputParser를 통해 구현할 수 있을 것 같다. PandasDataFrameOutputParserPandas DataFrame은 Python 프로그래밍 언어에서 널리 사용되는 데이터 구조로, 데이터 조작 및 분석을 위한 강력한 도구입니다. DataFrame은 구조화된 데이터를 효과적으로 다루기 위한 포괄적인 도구 세트를 제공하며, 이를 통해 데이터 정제, 변환 및 분석과 같은 다양한 작업을 수행할 수 있습니다.이 출력 파서는 사용자가 임의의 Pandas DataFrame을 지정하여 해당 Da..
2024.09.24 -
프롬프트 메이커로 프롬프트를 목적에 맞게 개선하여 더 좋은 결과값을 낼 수 있다.https://github.com/khw11044/Langchain_prompt_maker_streamlit GitHub - khw11044/Langchain_prompt_maker_streamlitContribute to khw11044/Langchain_prompt_maker_streamlit development by creating an account on GitHub.github.com 아래는 프롬프트 메이커이다. https://smith.langchain.com/hub/hardkothari/prompt-maker?organizationId=88007055-284e-585d-8633-daa8efb5ee48 LangS..
Langchain 프롬프트 메이커 및 미니 프로젝트프롬프트 메이커로 프롬프트를 목적에 맞게 개선하여 더 좋은 결과값을 낼 수 있다.https://github.com/khw11044/Langchain_prompt_maker_streamlit GitHub - khw11044/Langchain_prompt_maker_streamlitContribute to khw11044/Langchain_prompt_maker_streamlit development by creating an account on GitHub.github.com 아래는 프롬프트 메이커이다. https://smith.langchain.com/hub/hardkothari/prompt-maker?organizationId=88007055-284e-585d-8633-daa8efb5ee48 LangS..
2024.09.24 -
[AirFlow 공부하기] [2.오퍼레이터 기본] Cron 스케쥴 명령 표 2024.09.23
-
1. DAG 생성 (Bash operator) 2. Task의 수행 주체 예시 코드를 통해 실습해보자. > sudo docker compose up 웹 페이지 열고 http://localhost:8080/ example_bash_operator를 열자 from __future__ import annotationsimport datetimeimport pendulumfrom airflow.models.dag import DAGfrom airflow.operators.bash import BashOperatorfrom airflow.operators.empty import EmptyOperatorwith DAG( dag_id="dags_bash_operator", ..
[AirFlow 공부하기] [2.오퍼레이터 기본] Bash operator DAG 만들기, DAG 디렉토리 세팅1. DAG 생성 (Bash operator) 2. Task의 수행 주체 예시 코드를 통해 실습해보자. > sudo docker compose up 웹 페이지 열고 http://localhost:8080/ example_bash_operator를 열자 from __future__ import annotationsimport datetimeimport pendulumfrom airflow.models.dag import DAGfrom airflow.operators.bash import BashOperatorfrom airflow.operators.empty import EmptyOperatorwith DAG( dag_id="dags_bash_operator", ..
2024.09.23