/Algorithms-Python

Python 언어 및 알고리즘 소스코드 저장소입니다.

Primary LanguagePython

Python

Introduction

Python을 이용한 다양한 기능 및 알고리즘 구현 예제


Install

  • python3
sudo apt install python3
sudo update-alternatives --config python
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1

Contents

Basic

  • Python에서 기본적인 기능을 구현

Filter

  • Python 실행시 아규먼트를 이용해서 옵션을 적용하는 프로그램

LCS

  • Longest Common Subsequence의 약자로 최장 공통 부분 문자열을 찾아내는 프로그램

    • Smith-Waterman 알고리즘

Crawling