Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyun99999/algorithm-swift
๐ซฃ ์ค์ํํธ ์๊ณ ๋ฆฌ์ฆ ๋์์
https://github.com/hyun99999/algorithm-swift
algorithm swift
Last synced: 8 days ago
JSON representation
๐ซฃ ์ค์ํํธ ์๊ณ ๋ฆฌ์ฆ ๋์์
- Host: GitHub
- URL: https://github.com/hyun99999/algorithm-swift
- Owner: hyun99999
- Created: 2021-04-03T10:22:48.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-19T18:54:09.000Z (11 months ago)
- Last Synced: 2024-10-31T05:51:16.278Z (15 days ago)
- Topics: algorithm, swift
- Language: Swift
- Homepage:
- Size: 790 KB
- Stars: 19
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
๐ซ ***Swift ์๊ณ ๋ฆฌ์ฆ ๋์์ ***
> DFS : `stack, ์ฌ๊ท`
> BFS : `queue, while ๋ฌธ`
- ์๊ฐ ๋ค๋ฃจ๊ธฐ
```swift
/// ์ด ๋จ์๋ก ์๊ฐ์ ๋ณํ.
func changeToSecond(_ time: String) -> Int {
let times: [Int] = time.components(separatedBy: ":").map { Int($0)! }
return times[0] * 3600 + times[1] * 60 + times[2]
}/// ์ด ๋จ์๋ฅผ ์๊ฐ์ผ๋ก ๋ณํ.
func changeToTime(_ seconds: Int) -> String {
return "\(addZero(to: seconds / 3600)):\(addZero(to: seconds % 3600 / 60)):\(addZero(to: seconds % 60))"
}/// ํ ์๋ฆฟ์ ์๊ฐ์ 0 ์ถ๊ฐ
func addZero(to number: Int) -> String {
return number < 10 ? "0\(number)" : "\(number)"
}
```- permutation(์์ด)
```swift
/// index ๋ก ์กฐํฉ ์์ฑ
func permutation(_ array: [Int]) {
if array.count == dungeons.count {
permutationArray.append(array)
return
} else {
for i in 0.. ๋ฐฑ์ค[![Solved.acํ๋กํ](http://mazassumnida.wtf/api/v2/generate_badge?boj=ypsophila97)](https://solved.ac/ypsophila97)
- ๐ชํ์ํด๋ ๊ฒ์ ๊ตฌํ์ ์๋ก์์ด ๋๊ปด์ง.
| ๋ฌธ์ | ๋์ด๋ | ํ์ด | ๋ ์ง | ์๊ณ ๋ฆฌ์ฆ |
| :----------------------: | :------: | :-------: |:-------:|:-------:|
| [๋งํฌ์ ์คํํธ](https://www.acmicpc.net/problem/15661) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋งํฌ์%20์คํํธ.swift) | `23.12.20` | ์์ ํ์,dfs |
| [๊ฐ์](https://www.acmicpc.net/problem/15683) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ธ๊ตฌ%20์ด๋.swift) | `23.12.19` | ์์ ํ์,dfs |
| [์ธ๊ตฌ ์ด๋](https://www.acmicpc.net/problem/16234) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ธ๊ตฌ%20์ด๋.swift) | `23.12.18` | ๊ตฌํ |
| [๋ฏธ์น ๋ก๋ด](https://www.acmicpc.net/problem/1405) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ฏธ์น%20๋ก๋ด.swift) | `23.12.18` | dfs(๋ฐฑํธ๋ํน) |
| [๋จ์ด ์ํ](https://www.acmicpc.net/problem/1339) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋จ์ด%20์ํ.swift) | `23.12.15` | ๊ทธ๋ฆฌ๋ |
| [์ํธ ๊ฒ์](https://www.acmicpc.net/problem/1327) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ํธ%20๊ฒ์.swift) | `23.12.08` | ์์ ํ์,bfs๐ช |
| [์์ ํ๋ก ๊ฐ](https://www.acmicpc.net/problem/1188) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์์%20ํ๋ก ๊ฐ.swift) | `23.12.05` | ์ํ(์ต๋๊ณต์ฝ์) |
| [๊ฐ๋ฅด์นจ](https://www.acmicpc.net/problem/1062) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๊ฐ๋ฅด์นจ.swift) | `23.12.05` | ์์ ํ์(๋นํธ๋ง์คํฌ) |
| [๋จํ](https://www.acmicpc.net/problem/15961) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋จํ.swift) | `23.12.05` | ์์ ํ์(์ต์ ํ) |
| [๊ณ ์ธต ๊ฑด๋ฌผ](https://www.acmicpc.net/problem/1027) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๊ณ ์ธต%20๊ฑด๋ฌผ.swift) | `23.12.01` | ์์ ํ์ |
| [์ ๋๋๊ธฐ ๊ฒ์](https://www.acmicpc.net/problem/27172) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์%20๋๋๊ธฐ%20๊ฒ์.swift) | `23.11.30` | ์์ ํ์(๋ฐฐ์) |
| [์นด๋ ์ ๋ ฌํ๊ธฐ](https://www.acmicpc.net/problem/1715) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์นด๋%20์ ๋ ฌํ๊ธฐ.swift) | `23.11.30` | ์ฐ์ ์์ํ๐ช |
| [๊ณต์ ๊ธฐ ์ค์น](https://www.acmicpc.net/problem/2110) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๊ณต์ ๊ธฐ%20์ค์น.swift) | `23.11.29` | ์ด์งํ์๐ช |
| [์ค๋์ฟ ](https://www.acmicpc.net/problem/2580) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ค๋์ฟ .swift) | `23.11.29` | ๋ฐฑํธ๋ํน |
| [์ฐ๊ตฌ์](https://www.acmicpc.net/problem/14502) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ฐ๊ตฌ์.swift) | `23.11.22` | bfs,์ฌ๊ท |
| [์ปจ๋ฒ ์ด์ด ๋ฒจํธ ์์ ๋ก๋ด](https://www.acmicpc.net/problem/20055) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ปจ๋ฒ ์ด์ด%20๋ฒจํธ%20์์%20๋ก๋ด.swift) | `23.11.18` | ๊ตฌํ |
| [๋ฒฝ์ฅ๋ฌธ์ ์ด๋](https://www.acmicpc.net/problem/2666) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ฒฝ์ฅ๋ฌธ์%20์ด๋.swift) | `23.11.17` | dfs |
| [A์ B](https://www.acmicpc.net/problem/12904) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/A์%20B.swift) | `23.11.16` | ๊ทธ๋ฆฌ๋ |
| [ํธ๋ฆฌ์ ์ง๋ฆ](https://www.acmicpc.net/problem/1967) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํธ๋ฆฌ์%20์ง๋ฆ.swift) | `23.11.15` | dfs ๋ฐฑํธ๋ํน |
| [์ ์ด์ด ์ฐ๊ธฐ 2](https://www.acmicpc.net/problem/1790) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์%20์ด์ด%20์ฐ๊ธฐ%202.swift) | `23.11.15` | ์ํ ๊ตฌํ |
| [ํฑ๋๋ฐํด](https://www.acmicpc.net/problem/14891) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํฑ๋๋ฐํด.swift) | `23.11.15` | ๊ตฌํ |
| [์ฅ์ ์ ์ ๊พธ๋ฏธ๊ธฐ](https://www.acmicpc.net/problem/6198) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ฅ์%20์ ์%20๊พธ๋ฏธ๊ธฐ.swift) | `23.11.13` | ๋ชจ๋ ธํค ์คํ |
| [ํ](https://www.acmicpc.net/problem/2493) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ.swift) | `23.11.13` | ๋ชจ๋ ธํค ์คํ |
| [๋์ 1](https://www.acmicpc.net/problem/2293) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋์ %201.swift) | `23.11.13` | dp |
| [์ํธ ๋ง๋ค๊ธฐ](https://www.acmicpc.net/problem/1759) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ํธ%20๋ง๋ค๊ธฐ.swift) | `23.11.10` | dfs(์์ ํ์ ์กฐํฉ) |
| [์ค๋ฅด๋ง ์](https://www.acmicpc.net/problem/11057) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ค๋ฅด๋ง%20์.swift) | `23.11.02` | dp |
| [๋์ดํธ์ ์ด๋](https://www.acmicpc.net/problem/7562) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋์ดํธ์%20์ด๋.swift) | `23.11.01` | bfs |
| [์ฐ์ฐ์ ๋ผ์๋ฃ๊ธฐ](https://www.acmicpc.net/problem/14888) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฐ์ฐ์%20๋ผ์๋ฃ๊ธฐ.swift) | `23.11.01` | dfs(๋ฐฑํธ๋ํน) |
| [์คํํธ์ ๋งํฌ](https://www.acmicpc.net/problem/14889) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์คํํธ์%20๋งํฌ.swift) | `23.10.17` | ๋ฐฑํธ๋ํน๐ช |
| [์ฌ์ด ๊ณ๋จ ์](https://www.acmicpc.net/problem/10844) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฌ์ด%20๊ณ๋จ%20์.swift) | `23.10.17` | dp |
| [๋ด๋ฒ๋งจ](https://www.acmicpc.net/problem/16918) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ด๋ฒ๋งจ.swift) | `23.10.06` | ๊ตฌํ |
| [ํฌ๋์ฃผ ์์](https://www.acmicpc.net/problem/2156) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํฌ๋์ฃผ%20์์.swift) | `23.10.06` | dp |
| [N-Queen](https://www.acmicpc.net/problem/9663) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/N-Queen.swift) | `23.09.12` | dfs,๋ฐฑํธ๋ํน |
| [๋ก๋ด ์ฒญ์๊ธฐ](https://www.acmicpc.net/problem/14503) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ก๋ด%20์ฒญ์๊ธฐ.swift) | `23.09.07` | ๊ตฌํ |
| [ํน์ ํ ์ต๋จ ๊ฒฝ๋ก](https://www.acmicpc.net/problem/1504) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํน์ ํ%20์ต๋จ%20๊ฒฝ๋ก.swift) | `23.09.07` | ๋ค์ต์คํธ๋ผ |
| [๋ณด๋ฌผ์ฌ](https://www.acmicpc.net/problem/2589) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ณด๋ฌผ์ฌ.swift) | `23.09.06` | bfs+๊น์ด์ ์ฅ |
| [์์ญ ๊ตฌํ๊ธฐ](https://www.acmicpc.net/problem/2583) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์์ญ%20๊ตฌํ๊ธฐ.swift) | `23.09.06` | dfs |
| [๊ฒฝ๋น์](https://www.acmicpc.net/problem/2564) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ฒฝ๋น์.swift) | `23.09.06` | ๊ตฌํ |
| [๊ฑฐ์ง๋ง](https://www.acmicpc.net/problem/1043) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๊ฑฐ์ง๋ง.swift) | `23.09.06` | union-find |
| [์ธ์ด๋ฒ๊ฐ๊ฐ์ดํ](https://www.acmicpc.net/problem/19583) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ธ์ด๋ฒ๊ฐ๊ฐ์ดํ.swift) | `23.09.05` | ๊ตฌํ |
| [ํ๋ณด ์ถ์ฒํ๊ธฐ](https://www.acmicpc.net/problem/1713) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํ๋ณด%20์ถ์ฒํ๊ธฐ.swift) | `23.08.31` | ๊ตฌํ |
| [์ง๊ตฌ ์จ๋ํ](https://www.acmicpc.net/problem/5212) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ง๊ตฌ%20์จ๋ํ.swift) | `23.08.30` | ๊ตฌํ |
| [ํธ๋ญ](https://www.acmicpc.net/problem/13335) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํธ๋ญ.swift) | `23.08.15` | ๊ตฌํ |
| [์ต์ ์คํจ๋ ํธ๋ฆฌ](https://www.acmicpc.net/problem/1197) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ต์%20์คํจ๋%20ํธ๋ฆฌ.swift) | `23.08.14` | mst |
| [์คํ ์์ด](https://www.acmicpc.net/problem/1874) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์คํ%20์์ด.swift) | `23.08.14` | ์๋ฃ๊ตฌ์กฐ |
| [๋์ ์๋ฅด๊ธฐ](https://www.acmicpc.net/problem/1654) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋์ %20์๋ฅด๊ธฐ.swift) | `23.08.10` | ์ด์งํ์ |
| [222-ํ๋ง](https://www.acmicpc.net/problem/17829) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/222-ํ๋ง.swift) | `23.08.08` | ๊ตฌํ |
| [ํ์ดํ ์ฎ๊ธฐ๊ธฐ 2](https://www.acmicpc.net/problem/17069) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ์ดํ%20์ฎ๊ธฐ๊ธฐ%202.swift) | `23.08.07` | dp |
| [ํ์ดํ ์ฎ๊ธฐ๊ธฐ 1](https://www.acmicpc.net/problem/17070) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ์ดํ%20์ฎ๊ธฐ๊ธฐ%201.swift) | `23.08.06` | dfs |
| [์ซ์ ์ ์ฌ๊ฐํ](https://www.acmicpc.net/problem/1051) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ซ์%20์ ์ฌ๊ฐํ.swift) | `23.08.07` | ๊ตฌํ |
| [์ฐธ์ธ๋ฐญ](https://www.acmicpc.net/problem/2477) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฐธ์ธ๋ฐญ.swift) | `23.08.07` | ๊ตฌํ |
| [์ฌํ ๊ฒ์](https://www.acmicpc.net/problem/3085) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฌํ%20๊ฒ์.swift) | `23.08.06` | ๊ตฌํ |
| [๋ง์ธํฌ๋ํํธ](https://www.acmicpc.net/problem/18111) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ง์ธํฌ๋ํํธ.swift) | `23.08.05` | ๊ตฌํ |
| [๊ดํธ์ ๊ฐ](https://www.acmicpc.net/problem/17413) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ดํธ์%20๊ฐ.swift) | `23.08.04` | ๊ตฌํ |
| [๋จ์ด ๋ค์ง๊ธฐ 2](https://www.acmicpc.net/problem/17413) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋จ์ด%20๋ค์ง๊ธฐ%202.swift) | `23.08.04` | ๊ตฌํ |
| [ํต๊ณํ](https://www.acmicpc.net/problem/2108) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํต๊ณํ.swift) | `23.08.03` | ๊ตฌํ |
| [ํ๋ฆฐํฐ ํ](https://www.acmicpc.net/problem/1966) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํ๋ฆฐํฐ%20ํ.swift) | `23.08.03` | ๊ตฌํ |
| [N๊ณผ M (2)](https://www.acmicpc.net/problem/15650) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/N๊ณผ%20M%20(2).swift) | `23.08.03` | ์กฐํฉ |
| [Four Squares](https://www.acmicpc.net/problem/6064) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/Four%20Squares.swift) | `23.08.03` | dp,์ ๊ณฑ์ |
| [์นด์ ๋ฌ๋ ฅ](https://www.acmicpc.net/problem/17626) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์นด์%20๋ฌ๋ ฅ.swift) | `23.08.03` | ์ํ |
| [์ค ์๊ธฐ](https://www.acmicpc.net/problem/2273) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ค%20์๊ธฐ.swift) | `23.08.02` | ํ๋ก์ด๋์์ ,์์ |
| [ํ ์ค๋ก ์๊ธฐ](https://www.acmicpc.net/problem/1138) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํ%20์ค๋ก%20์๊ธฐ.swift) | `23.08.02` | ๊ตฌํ |
| [๋์ 0](https://www.acmicpc.net/problem/11047) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋์ %200.swift) | `23.08.02` | ๊ทธ๋ฆฌ๋ |
| [์นํจ ๋ฐฐ๋ฌ](https://www.acmicpc.net/problem/15686) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์นํจ%20๋ฐฐ๋ฌ.swift) | `23.08.02` | dfs,์กฐํฉ |
| [๋ฌธ์ ์ง](https://www.acmicpc.net/problem/1766) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ฌธ์ ์ง.swift) | `23.08.01` | ์์์ ๋ ฌ |
| [์ค ์ธ์ฐ๊ธฐ](https://www.acmicpc.net/problem/2252) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ค%20์ธ์ฐ๊ธฐ.swift) | `23.08.01` | ์์์ ๋ ฌ |
| [ํ๋ฒํ ๋ฐฐ๋ญ](https://www.acmicpc.net/problem/12865) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ๋ฒํ%20๋ฐฐ๋ญ.swift) | `23.08.01` | 0-1knapsack, 2์ฐจ์dp |
| [LCS](https://www.acmicpc.net/problem/9251) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/LCS.swift) | `23.08.01` | 2์ฐจ์dp |
| [๋์ ๋ถํ ๊ณํ](https://www.acmicpc.net/problem/1647) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋์%20๋ถํ %20๊ณํ.swift) | `23.07.30` | MST |
| [์ ๋๊ฐ ํ](https://www.acmicpc.net/problem/11286) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ ๋๊ฐ%20ํ.swift) | `23.07.28` | heap |
| [๋๋์ผ ํฌ์ผ๋ชฌ ๋ง์คํฐ ์ด๋ค์](https://www.acmicpc.net/problem/1620) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋๋์ผ%20ํฌ์ผ๋ชฌ%20๋ง์คํฐ%20์ด๋ค์.swift) | `23.07.27` | ๋์ ๋๋ฆฌ |
| [์ต๋ํ](https://www.acmicpc.net/problem/11279) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ต๋ํ.swift) | `23.07.27` | heap |
| [์ต์ํ](https://www.acmicpc.net/problem/1927) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ต์ํ.swift) | `23.07.27` | heap |
| [๋ฃ๋ณด์ก](https://www.acmicpc.net/problem/1764) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ฃ๋ณด์ก.swift) | `23.07.26` | ๋์ ๋๋ฆฌ |
| [ATM](https://www.acmicpc.net/problem/11399) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ATM.swift) | `23.07.26` | ๊ทธ๋ฆฌ๋ |
| [ํ๋๋ฐ ์์ด](https://www.acmicpc.net/problem/9461) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํ๋๋ฐ%20์์ด.swift) | `23.07.26` | dp |
| [ํจ์ ์ ์ ํด๋น](https://www.acmicpc.net/problem/9375) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํจ์ ์%20์ ํด๋น.swift) | `23.07.26` | ์ํ |
| [DNA ๋น๋ฐ๋ฒํธ](https://www.acmicpc.net/problem/12891) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/DNA%20๋น๋ฐ๋ฒํธ.swift) | `23.07.25` | ์ฌ๋ผ์ด๋ฉ์๋์ฐ |
| [๋ธ๋ก๊ทธ](https://www.acmicpc.net/problem/21921) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ธ๋ก๊ทธ.swift) | `23.07.25` | ์ฌ๋ผ์ด๋ฉ์๋์ฐ |
| [๋ด๋ ค๊ฐ๊ธฐ](https://www.acmicpc.net/problem/2096) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ด๋ ค๊ฐ๊ธฐ.swift) | `23.07.25` | dp |
| [IOIOI](https://www.acmicpc.net/problem/5525) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/IOIOI.swift) | `23.07.25` | dp |
| [ํผ๋ณด๋์น ํจ์](https://www.acmicpc.net/problem/1003) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํผ๋ณด๋์น%20ํจ์.swift) | `23.07.25` | dp |
| [๋น๋ฐ๋ฒํธ ์ฐพ๊ธฐ](https://www.acmicpc.net/problem/17219) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋น๋ฐ๋ฒํธ%20์ฐพ๊ธฐ.swift) | `23.07.25` | ๋์ ๋๋ฆฌ |
| [1,2,3 ๋ํ๊ธฐ](https://www.acmicpc.net/problem/9095) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/1,2,3%20๋ํ๊ธฐ.swift) | `23.07.25` | dp |
| [์ขํ ์์ถ](https://www.acmicpc.net/problem/18870) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ขํ%20์์ถ.swift) | `23.07.25` | ์ด์งํ์ |
| [๊ตฌ๊ฐ ํฉ ๊ตฌํ๊ธฐ 4](https://www.acmicpc.net/problem/11727) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ตฌ๊ฐ%20ํฉ%20๊ตฌํ๊ธฐ%204.swift) | `23.07.24` | dp |
| [2*n ํ์ผ๋ง 2](https://www.acmicpc.net/problem/11727) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/2*n%20ํ์ผ%202.swift) | `23.07.24` | dp |
| [2*n ํ์ผ๋ง](https://www.acmicpc.net/problem/11726) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/2*n%20ํ์ผ.swift) | `23.07.24` | dp |
| [์ด๋ชจํฐ์ฝ](https://www.acmicpc.net/problem/14226) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ด๋ชจํฐ์ฝ.swift) | `23.07.24` | bfs |
| [๋ฑ๊ณผ ์ฌ๋ค๋ฆฌ ๊ฒ์](https://www.acmicpc.net/problem/16928) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ฑ๊ณผ%20์ฌ๋ค๋ฆฌ%20๊ฒ์.swift) | `23.07.24` | bfs |
| [์ ๋ก์์ฝ](https://www.acmicpc.net/problem/10026) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ ๋ก์์ฝ.swift) | `23.07.24` | bfs |
| [ํธ๋ฆฌ์ ๋ถ๋ชจ ์ฐพ๊ธฐ](https://www.acmicpc.net/problem/11725) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํธ๋ฆฌ์%20๋ถ๋ชจ%20์ฐพ๊ธฐ.swift) | `23.07.23` | bfs,๋์ ๋๋ฆฌ |
| [N๊ณผ M (9)](https://www.acmicpc.net/problem/15663) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/N๊ณผ%20M%20(9).swift) | `23.07.23` | ์์ด |
| [ํธ๋ฆฌ ์ํ](https://www.acmicpc.net/problem/1991) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํธ๋ฆฌ%20์ํ.swift) | `23.07.23` | ์ ์,์ค์,ํ์ ์ํ |
| [๊ณ๋จ ์ค๋ฅด๊ธฐ](https://www.acmicpc.net/problem/2579) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ณ๋จ%20์ค๋ฅด๊ธฐ.swift) | `23.07.23` | dp |
| [์์ข ์ด ๋ง๋ค๊ธฐ](https://www.acmicpc.net/problem/2630) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์์ข ์ด%20๋ง๋ค๊ธฐ.swift) | `23.07.23` | ์ฌ๊ท,๋ถํ ์ ๋ณต |
| [N๊ณผ M (12)](https://www.acmicpc.net/problem/15666) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/N๊ณผ%20M%20(12).swift) | `23.07.22` | ์ค๋ณต ์กฐํฉ |
| [ํ๋ฐฐ ๋ฐฐ์ก](https://www.acmicpc.net/problem/5972) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ๋ฐฐ%20๋ฐฐ์ก.swift) | `23.07.22` | ๋ค์ต์คํธ๋ผ |
| [์ต์๋น์ฉ ๊ตฌํ๊ธฐ](https://www.acmicpc.net/problem/1916) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ต์๋น์ฉ%20๊ตฌํ๊ธฐ.swift) | `23.07.21` | ๋ค์ต์คํธ๋ผ |
| [๊ณฑ์ ](https://www.acmicpc.net/problem/1629) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ณฑ์ .swift) | `23.07.21` | ์ฌ๊ท,๋ถํ ์ ๋ณต |
| [์ ์ ์ผ๊ฐํ](https://www.acmicpc.net/problem/1932) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ ์%20์ผ๊ฐํ.swift) | `23.07.21` | dp |
| [RGB๊ฑฐ๋ฆฌ](https://www.acmicpc.net/problem/1149) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/RGB๊ฑฐ๋ฆฌ.swift) | `23.07.21` | dp |
| [๋ฌผ๋ณ](https://www.acmicpc.net/problem/1052) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ฌผ๋ณ.swift) | `23.07.20` | ์ ๊ณฑ๊ฐ๋ค๋ฃจ๊ธฐ |
| [์คํฐ์ปค](https://www.acmicpc.net/problem/9465) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์คํฐ์ปค.swift) | `23.07.19` | dp |
| [ํ ๋งํ (7576)](https://www.acmicpc.net/problem/7576) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ ๋งํ (7576).swift) | `23.07.19` | BFS |
| [ํ ๋งํ (7569)](https://www.acmicpc.net/problem/7569) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ ๋งํ (7569).swift) | `23.07.19` | BFS |
| [๊ตฌ๊ฐ ํฉ ๊ตฌํ๊ธฐ 5](https://www.acmicpc.net/problem/11660) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ตฌ๊ฐ%20ํฉ%20๊ตฌํ๊ธฐ%205.swift) | `23.07.19` | ๊ตฌ๊ฐํฉ |
| [๋ฆฌ๋ชจ์ปจ](https://www.acmicpc.net/problem/1107) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ฆฌ๋ชจ์ปจ.swift) | `23.07.18` | ํฌํฌ์ธํฐ |
| [AC](https://www.acmicpc.net/problem/5430) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/AC.swift) | `23.07.18` | ํฌํฌ์ธํฐ |
| [ํ๋ด๊ธฐ๋ ์น๊ตฌ๊ฐ ํ์ํด](https://www.acmicpc.net/problem/21736) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํ๋ด๊ธฐ๋%20์น๊ตฌ๊ฐ%20ํ์ํด.swift) | `23.07.18` | dfs |
| [Z](https://www.acmicpc.net/problem/1074) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/Z.swift) | `23.07.18` | ๋ถํ ์ ๋ณต |
| [์ผ๋น ๋ฒ ์ด์ปจ์ 6๋จ๊ณ ๋ฒ์น](https://www.acmicpc.net/problem/1389) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ผ๋น%20๋ฒ ์ด์ปจ์%206๋จ๊ณ%20๋ฒ์น.swift) | `23.07.18` | ํ๋ก์ด๋์์ |
| [๊ฐ์ฅ ๊ฐ๊น์ด ์ธ ์ฌ๋์ ์ฌ๋ฆฌ์ ๊ฑฐ๋ฆฌ](https://www.acmicpc.net/problem/20529) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ฐ์ฅ%20๊ฐ๊น์ด%20์ธ%20์ฌ๋์%20์ฌ๋ฆฌ์ %20๊ฑฐ๋ฆฌ.swift) | `23.07.18` | ์กฐํฉ,DFS,์์ ํ์,๋น๋๊ธฐ์ง์๋ฆฌ |
| [์ฌ์ด ์ต๋จ๊ฑฐ๋ฆฌ](https://www.acmicpc.net/problem/14940) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฌ์ด%20์ต๋จ๊ฑฐ๋ฆฌ.swift) | `23.07.17` | BFS |
| [1๋ก ๋ง๋ค๊ธฐ](https://www.acmicpc.net/problem/1463) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/1๋ก%20๋ง๋ค๊ธฐ.swift) | `23.07.17` | DP |
| [์์ ์์ญ](https://www.acmicpc.net/problem/2468) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์์ %20์์ญ.swift) | `23.07.16` | DFS |
| [์ฐ๊ฒฐ ์์์ ๊ฐ์](https://www.acmicpc.net/problem/1260) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฐ๊ฒฐ%20์์์%20๊ฐ์.swift) | `23.07.16` | DFS |
| [DFS์ BFS](https://www.acmicpc.net/problem/1260) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/DFS์%20BFS.swift) | `23.07.16` | DFS,BFS |
| [๊ฐ์ ํผํ๊ธฐ](https://www.acmicpc.net/problem/18428) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๊ฐ์%20ํผํ๊ธฐ.swift) | `23.07.16` | DFS,์กฐํฉ,์์ ํ์ |
| [์ ๊ธฐ๋ ๋ฐฐ์ถ](https://www.acmicpc.net/problem/1012) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ ๊ธฐ๋%20๋ฐฐ์ถ.swift) | `23.07.14` | DFS |
| [๋ฐ์ด๋ฌ์ค](https://www.acmicpc.net/problem/2606) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ฐ์ด๋ฌ์ค.swift) | `23.07.14` | DFS |
| [๋จ์ง๋ฒํธ๋ถ์ด๊ธฐ](https://www.acmicpc.net/problem/2667) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋จ์ง๋ฒํธ๋ถ์ด๊ธฐ.swift) | `23.07.13` | BFS |
| [๋ฏธ๋กํ์](https://www.acmicpc.net/problem/2178) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ฏธ๋กํ์.swift) | `23.07.13` | BFS,์ต๋จ๊ฒฝ๋ก |
| [๋ฌดํ ์์ด](https://www.acmicpc.net/problem/1351) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ฌดํ%20์์ด.swift) | `23.05.18` | dp, dfs |
| [PPAP](https://www.acmicpc.net/problem/16120) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/PPAP.swift) | `23.05.17` | ์คํ, suffix |
| [์นด๋ ๊ตฌ๋งคํ๊ธฐ](https://www.acmicpc.net/problem/11052) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์นด๋%20๊ตฌ๋งคํ๊ธฐ.swift) | `23.05.17` | DP |
| [์น๊ตฌ๋น](https://www.acmicpc.net/problem/16562) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์น๊ตฌ๋น.swift) | `23.05.16` | union-find |
| [์นด๋ ํฉ์ฒด ๋์ด](https://www.acmicpc.net/problem/15903) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์นด๋%20ํฉ์ฒด%20๋์ด.swift) | `23.03.28` | ๊ทธ๋ฆฌ๋ |
| [๋ฐฉํ์ถ](https://www.acmicpc.net/problem/15729) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ฐฉํ์ถ.swift) | `23.03.28` | ๊ทธ๋ฆฌ๋ |
| [ํต๋๋ฌด ๊ฑด๋๋ฐ๊ธฐ](https://www.acmicpc.net/problem/11497) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํต๋๋ฌด%20๊ฑด๋๋ฐ๊ธฐ.swift) | `23.03.22` | ๊ทธ๋ฆฌ๋ |
| [5์ฐจ ์ ์ง](https://www.acmicpc.net/problem/16112) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/5์ฐจ%20์ ์ง.swift) | `23.03.22` | ๊ทธ๋ฆฌ๋ |
| [์ด์ฝ๋ฆฟ ์์ฌ](https://www.acmicpc.net/problem/2885) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ด์ฝ๋ฆฟ%20์์ฌ.swift) | `23.03.22` | ๊ทธ๋ฆฌ๋ |
| [์ด๋](https://www.acmicpc.net/problem/1956) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ด๋.swift) | `23.03.21` | ํ๋ก์ด๋, ์ต๋จ๊ฑฐ๋ฆฌ |
| [ํ๋ก์ด๋](https://www.acmicpc.net/problem/11404) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ๋ก์ด๋.swift) | `23.03.21` | ํ๋ก์ด๋, ์ต๋จ๊ฑฐ๋ฆฌ |
| [ํ๋ฌธ](https://www.acmicpc.net/problem/17609) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ๋ฌธ.swift) | `23.03.21` | ํฌํฌ์ธํฐ |
| [๊ฒน์น๋ ๊ฑด ์ซ์ด](https://www.acmicpc.net/problem/20922) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ฒน์น๋%20๊ฑด%20์ซ์ด.swift) | `23.03.21` | ํฌํฌ์ธํฐ |
| [์ฐ๋ฆฌ์ง์ ๋์๊ด์ด ์์ด](https://www.acmicpc.net/problem/2872) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฐ๋ฆฌ์ง์%20๋์๊ด์ด%20์์ด.swift) | `23.03.20` | ๊ทธ๋ฆฌ๋ |
| [์๋ฆฌ๊ณต ํญ์น](https://www.acmicpc.net/problem/1449) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์๋ฆฌ๊ณต%20ํญ์น.swift) | `23.03.19` | ๊ทธ๋ฆฌ๋ |
| [์ฃผ์](https://www.acmicpc.net/problem/11501) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฃผ์.swift) | `23.03.18` | ๊ทธ๋ฆฌ๋ |
| [ํ๋ ฌ](https://www.acmicpc.net/problem/1080) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํ๋ ฌ.swift) | `23.03.10` | ๊ทธ๋ฆฌ๋ |
| [์๊ธฐ์์ด](https://www.acmicpc.net/problem/16236) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์๊ธฐ์์ด.swift) | `23.03.10` | bfs |
| [๋๋ฌด ์๋ฅด๊ธฐ](https://www.acmicpc.net/problem/2805) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋๋ฌด%20์๋ฅด๊ธฐ.swift) | `23.03.09` | ํ๋ผ๋ฉํธ๋ฆญ ์์น |
| [์ง๋ฆ๊ธธ](https://www.acmicpc.net/problem/1446) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ง๋ฆ๊ธธ.swift) | `23.03.09` | ๋ค์ต์คํธ๋ผ, ์ต๋จ๊ฑฐ๋ฆฌ |
| [์น๊ตฌ](https://www.acmicpc.net/problem/1058) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์น๊ตฌ.swift) | `23.03.08` | ํ๋ก์ด๋-์์ , ์ต๋จ๊ฑฐ๋ฆฌ |
| [๋ณผ ๋ชจ์ผ๊ธฐ](https://www.acmicpc.net/problem/17615) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ณผ%20๋ชจ์ผ๊ธฐ.swift) | `23.03.08` | ๊ทธ๋ฆฌ๋ |
| [์ฐ์ฒด๊ตญ](https://www.acmicpc.net/problem/2141) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ฐ์ฒด๊ตญ.swift) | `23.03.08` | ๊ทธ๋ฆฌ๋ |
| [๋ฐ์ ์ ์ค์น](https://www.acmicpc.net/problem/1277) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ฐ์ ์%20์ค์น.swift) | `23.03.07` | ๊ทธ๋ฆฌ๋ |
| [๊ฟ ๋ฐ๊ธฐ](https://www.acmicpc.net/problem/21758) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๊ฟ%20๋ฐ๊ธฐ.swift) | `23.03.06` | ๊ทธ๋ฆฌ๋ |
| [ํ์ ์ด๋ฐฅ](https://www.acmicpc.net/problem/2531) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํ์ %20์ด๋ฐฅ.swift) | `23.03.06` | ํฌํฌ์ธํฐ |
| [๊ฐ์ฅ ๊ธด ์ง์ ์ฐ์ํ ๋ถ๋ถ ์์ด(large)](https://www.acmicpc.net/problem/22862) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๊ฐ์ฅ%20๊ธด%20์ง์%20์ฐ์ํ%20๋ถ๋ถ%20์์ด(large).swift) | `23.03.05` | ํฌ ํฌ์ธํฐ |
| [๋ ์ฉ์ก](https://www.acmicpc.net/problem/2470) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋%20์ฉ์ก.swift) | `23.03.01` | ํฌ ํฌ์ธํฐ |
| [๋ฐฐ](https://www.acmicpc.net/problem/1092) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋ฐฐ.swift) | `23.03.01` | ๊ทธ๋ฆฌ๋ |
| [์จ๋ฐ๊ผญ์ง2](https://www.acmicpc.net/problem/12851) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์จ๋ฐ๊ผญ์ง2.swift) | `23.02.24` | BFS, ์ต๋จ ๊ฑฐ๋ฆฌ |
| [๊ฐ์ฅ ๊ธด ์ง์ ์ฐ์ํ ๋ถ๋ถ ์์ด(small)](https://www.acmicpc.net/problem/22857) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ฐ์ฅ%20๊ธด%20์ง์%20์ฐ์ํ%20๋ถ๋ถ%20์์ด(small).swift) | `23.02.24` | ํฌํฌ์ธํฐ |
| [์ผ์](https://www.acmicpc.net/problem/2212) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ผ์.swift) | `23.02.24` | ๊ทธ๋ฆฌ๋ |
| [๊ฐ์์ค ๋ฐฐ์ ](https://www.acmicpc.net/problem/11000) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๊ฐ์์ค%20๋ฐฐ์ .swift) | `23.02.24` | ๊ทธ๋ฆฌ๋ |
| [์ต์ ํ์์ค ๊ฐ์](https://www.acmicpc.net/problem/19598) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ต์%20ํ์์ค%20๊ฐ์.swift) | `23.02.24` | ๊ทธ๋ฆฌ๋ |
| [ํ๋ณต ์ ์น์](https://www.acmicpc.net/problem/13164) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/ํ๋ณต%20์ ์น์.swift) | `23.02.24` | ๊ทธ๋ฆฌ๋ |
| [์๊ฐ๊ทธ๋ผ์ด๋](https://www.acmicpc.net/problem/14938) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์๊ฐ๊ทธ๋ผ์ด๋.swift) | `23.02.23` | ํ๋ก์ด๋ ์์ , ์ต๋จ ๊ฑฐ๋ฆฌ |
| [์ต๋จ๊ฒฝ๋ก](https://www.acmicpc.net/problem/1753) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์ต๋จ๊ฒฝ๋ก.swift) | `23.02.23` | ๋ค์ต์คํธ๋ผ, ์ต๋จ ๊ฑฐ๋ฆฌ |
| [๋๋์ง ์๋ ํํฐ](https://www.acmicpc.net/problem/11265) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/๋๋์ง%20์๋%20ํํฐ.swift) | `23.02.22` | ํ๋ก์ด๋ ์์ , ์ต๋จ ๊ฑฐ๋ฆฌ |
| [์จ๋ฐ๊ผญ์ง3](https://www.acmicpc.net/problem/13549) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Gold/์จ๋ฐ๊ผญ์ง3.swift) | `23.02.22` | BFS, ์ต๋จ ๊ฑฐ๋ฆฌ |
| [์จ๋ฐ๊ผญ์ง](https://www.acmicpc.net/problem/1697) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์จ๋ฐ๊ผญ์ง.swift) | `23.02.22` | BFS, ์ต๋จ ๊ฑฐ๋ฆฌ |
| [๊ฒฝ๋ก ์ฐพ๊ธฐ](https://www.acmicpc.net/problem/11055) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ฒฝ๋ก%20์ฐพ๊ธฐ.swift) | `23.02.20` | DFS |
| [ํน์ ๊ฑฐ๋ฆฌ์ ๋์ ์ฐพ๊ธฐ](https://www.acmicpc.net/problem/18352) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํน์ %20๊ฑฐ๋ฆฌ์%20๋์%20์ฐพ๊ธฐ.swift) | `23.02.20` | BFS, ์ต๋จ๊ฑฐ๋ฆฌ |
| [๊ฐ์ฅ ํฐ ์ฆ๊ฐ ๋ถ๋ถ ์์ด](https://www.acmicpc.net/problem/11055) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ฐ์ฅ%20ํฐ%20์ฆ๊ฐ%20๋ถ๋ถ%20์์ด.swift) | `23.02.17` | DP |
| [์ฐ์ํฉ](https://www.acmicpc.net/problem/1912) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฐ์ํฉ.swift) | `23.02.17` | DP |
| [๊ฐ์ฅ ๊ธด ์ฆ๊ฐํ๋ ๋ถ๋ถ ์์ด](https://www.acmicpc.net/problem/11053) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๊ฐ์ฅ%20๊ธด%20์ฆ๊ฐํ๋%20๋ถ๋ถ%20์์ด.swift) | `23.02.17` | DP |
| [๋ฏผ๊ฒธ ์](https://www.acmicpc.net/problem/1541) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ฏผ๊ฒธ%20์.swift) | `23.02.13` | ๊ทธ๋ฆฌ๋ |
| [A->B](https://www.acmicpc.net/problem/1541) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/A->B.swift) | `23.02.13` | ๊ทธ๋ฆฌ๋ |
| [์์ด๋ฒ๋ฆฐ ๊ดํธ](https://www.acmicpc.net/problem/1541) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์์ด๋ฒ๋ฆฐ%20๊ดํธ.swift) | `23.02.13` | ๊ทธ๋ฆฌ๋ |
| [๋ธ๋ก๊ทธ2](https://www.acmicpc.net/problem/20365) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/๋ธ๋ก๊ทธ2.swift) | `23.02.06` | ๊ทธ๋ฆฌ๋ |
| [์๊ฐ๊ทผ์ก๋งจ](https://www.acmicpc.net/problem/20300) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์๊ฐ๊ทผ์ก๋งจ.swift) | `23.02.03` | ๊ทธ๋ฆฌ๋ |
| [์๋์ง ๋๋งํฌ](https://www.acmicpc.net/problem/20115) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์๋์ง%20๋๋งํฌ.swift) | `23.02.03` | ๊ทธ๋ฆฌ๋ |
| [์ฃผ์ ์](https://www.acmicpc.net/problem/13305) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/์ฃผ์ ์.swift) | `23.02.03` | ๊ทธ๋ฆฌ๋ |
| [ํ์์ค ๋ฐฐ์ ](https://www.acmicpc.net/problem/1931) | | [๐ฅ](https://github.com/hyun99999/algorithm-Swift/blob/master/Silver/ํ์์ค%20๋ฐฐ์ .swift) | `23.02.03` | ๊ทธ๋ฆฌ๋ |> ํ๋ก๊ทธ๋๋จธ์ค
| ๋ฌธ์ | ๋์ด๋ | ํ์ด | ๋ ์ง | ์๊ณ ๋ฆฌ์ฆ |
| :----------------------: | :------: | :-------: |:-------:|:-------:|
| [์ง๊ฒ๋ค๋ฆฌ](https://school.programmers.co.kr/learn/courses/30/lessons/43236) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level4/์ง๊ฒ๋ค๋ฆฌ.swift) | `23.11.29` | ์ด์งํ์๐ช |
| [๊ธธ ์ฐพ๊ธฐ ๊ฒ์](https://school.programmers.co.kr/learn/courses/30/lessons/42892) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๊ธธ%20์ฐพ๊ธฐ%20๊ฒ์.swift) | `23.11.28` | ์ด์งํ์ํธ๋ฆฌ๐ช |
| [๋ถ๋๋ณต๊ท](https://school.programmers.co.kr/learn/courses/30/lessons/132266) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๋ถ๋๋ณต๊ท.swift) | `23.11.24` | bfs๐ช |
| [์ฝ๋ฉ ํ ์คํธ ๊ณต๋ถ](https://school.programmers.co.kr/learn/courses/30/lessons/118668) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์ฝ๋ฉ%20ํ ์คํธ%20๊ณต๋ถ.swift) | `23.11.24` | 2์ฐจ์ dp |
| [์ด๋ชจํฐ์ฝ ํ ์ธํ์ฌ](https://school.programmers.co.kr/learn/courses/30/lessons/150368) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ด๋ชจํฐ์ฝ%20ํ ์ธํ์ฌ.swift) | `23.11.24` | ์์ ํ์ |
| [๋ฏธ๋ก ํ์ถ](https://school.programmers.co.kr/learn/courses/30/lessons/159993) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ฏธ๋ก%20ํ์ถ.swift) | `23.10.13` | bfs |
| [์นด๋ ๋ญ์น](https://school.programmers.co.kr/learn/courses/30/lessons/159994) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์นด๋%20๋ญ์น.swift) | `23.10.13` | ๊ตฌํ |
| [๋์ถฉ ๋ง๋ ์ํ](https://school.programmers.co.kr/learn/courses/30/lessons/160586) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋์ถฉ%20๋ง๋ %20์ํ.swift) | `23.10.13` | ๊ตฌํ |
| [ํฐ์ผ๋ชฌ](https://school.programmers.co.kr/learn/courses/30/lessons/1845) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํฐ์ผ๋ชฌ.swift) | `23.10.06` | ํด์ |
| [ํธํ ๋์ค](https://school.programmers.co.kr/learn/courses/30/lessons/155651) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํธํ %20๋์ค.swift) | `23.09.12` | ๊ทธ๋ฆฌ๋ |
| [๋ฆฌ์ฝ์ณ ๋ก๋ด](https://school.programmers.co.kr/learn/courses/30/lessons/169199) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ฆฌ์ฝ์ณ%20๋ก๋ด.swift) | `23.09.12` | bfs+๊น์ด์ ์ฅ |
| [๋ง์น ํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/161989) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ง์น ํ๊ธฐ.swift) | `23.09.12` | ๊ตฌํ |
| [๋ฐํํ๋ฉด ์ ๋ฆฌ](https://school.programmers.co.kr/learn/courses/30/lessons/161990) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ฐํํ๋ฉด%20์ ๋ฆฌ.swift) | `23.09.12` | ๊ตฌํ |
| [๊ณต์ ์ฐ์ฑ ](https://school.programmers.co.kr/learn/courses/30/lessons/172928) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๊ณต์%20์ฐ์ฑ .swift) | `23.09.11` | ๊ตฌํ |
| [๊ด๋ฌผ ์บ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/172927) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๊ณต๋ฌผ%20์บ๊ธฐ.swift) | `23.09.08` | ๊ทธ๋ฆฌ๋ |
| [๊ณผ์ ์ํํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/176962) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๊ณผ์ %20์ํํ๊ธฐ.swift) | `23.09.08` | ์คํ |
| [์๊ฒฉ ์์คํ ](https://school.programmers.co.kr/learn/courses/30/lessons/181188) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์๊ฒฉ%20์์คํ .swift) | `23.09.08` | ๊ทธ๋ฆฌ๋ |
| [๋ฌ๋ฆฌ๊ธฐ ๊ฒฝ์ฃผ](https://school.programmers.co.kr/learn/courses/30/lessons/178871) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ฌ๋ฆฌ๊ธฐ%20๊ฒฝ์ฃผ.swift) | `23.07.14` | ๋์ ๋๋ฆฌ |
| [์ถ์ต ์ ์](https://school.programmers.co.kr/learn/courses/30/lessons/176963) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ถ์ต%20์ ์.swift) | `23.07.14` | |
| [ํ๋ฐฐ ๋ฐฐ๋ฌ๊ณผ ์๊ฑฐํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/150369?language=swift) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํ๋ฐฐ%20๋ฐฐ๋ฌ๊ณผ%20์๊ฑฐํ๊ธฐ.swift) | `23.01.20` | |
| [์ฐ๋ฐ์์ด ์ ์ ๋ถ](https://school.programmers.co.kr/learn/courses/30/lessons/134239) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ฐ๋ฐ์์ด%20์ ์ ๋ถ.swift) | `23.01.20` | ๋ฌธ์ ํด์ |
| [๊ต์ ์ ๋ณ ๋ง๋ค๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/87377) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๊ต์ ์%20๋ณ%20๋ง๋ค๊ธฐ.swift) | `23.01.18` | ์ ์ธ์ฐ๊ณ ํ๊ธฐ |
| [๋ํ์ค ๊ฒ์](https://school.programmers.co.kr/learn/courses/30/lessons/142085) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ํ์ค%20๊ฒ์.swift) | `23.01.18` | ํ๋ผ๋ฉํธ๋ฆญ ์์น(์ด์งํ์) - ์๊ฐ์ด๊ณผ |
| [๋ง๋ฒ์ ์๋ฆฌ๋ฒ ์ดํฐ](https://school.programmers.co.kr/learn/courses/30/lessons/148653) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ง๋ฒ์%20์๋ฆฌ๋ฒ ์ดํฐ.swift) | `23.01.17` | |
| [์ซ์ ์นด๋ ๋๋๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/135807) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ซ์%20์นด๋%20๋๋๊ธฐ.swift) | `23.01.13` | |
| [ํ์ ํฐํธ๋ฆฌ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/68646) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/ํ์ %20ํฐํธ๋ฆฌ๊ธฐ.swift) | `23.01.13` | ๋ค์ด๋๋ฏน ํ๋ก๊ทธ๋๋ฐ |
| [ํผ์ ๋๊ธฐ์ ๋ฌ์ธ](https://school.programmers.co.kr/learn/courses/30/lessons/131130) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํผ์%20๋๊ธฐ์%20๋ฌ์ธ.swift) | `23.01.13` | |
| [์ ์ฐ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/140107) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ %20์ฐ๊ธฐ.swift) | `23.01.12` | |
| [๊ฐ์ธ์ ๋ณด ์์ง ์ ํจ๊ธฐ๊ฐ](https://school.programmers.co.kr/learn/courses/30/lessons/150370) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๊ฐ์ธ์ ๋ณด%20์์ง%20์ ํจ๊ธฐ๊ฐ.swift) | `23.01.11` | |
| [ํฌ๊ธฐ๊ฐ ์์ ๋ถ๋ถ๋ฌธ์์ด](https://school.programmers.co.kr/learn/courses/30/lessons/147355) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํฌ๊ธฐ๊ฐ%20์์%20๋ถ๋ถ๋ฌธ์์ด.swift) | `23.01.10` | |
| [์ฟผ๋์์ถ ํ ๊ฐ์ ์ธ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/68936) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ฟผ๋์์ถ%20ํ%20๊ฐ์%20์ธ๊ธฐ.swift) | `22.12.14` | |
| [์ฌ ์ฐ๊ฒฐํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/42861) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์ฌ%20์ฐ๊ฒฐํ๊ธฐ.swift) | `22.12.13` | MST(ํฌ๋ฃจ์ค์นผ, ํ๋ฆผ) |
| [๊ฐ์ฅ ๊ฐ๊น์ด ๊ฐ์ ๊ธ์](https://school.programmers.co.kr/learn/courses/30/lessons/142086) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๊ฐ์ฅ%20๊ฐ๊น์ด%20๊ฐ์%20๊ธ์.swift) | `22.12.10` | dictionary ์ด๊ธฐํ |
| [ํ ์ธํ์ฌ](https://school.programmers.co.kr/learn/courses/30/lessons/131127) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํ ์ธํ์ฌ.swift) | `22.12.10` | |
| [ํ๋ฐฐ์์](https://school.programmers.co.kr/learn/courses/30/lessons/131704) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํ๋ฐฐ์์.swift) | `22.12.10` | |
| [๋กค์ผ์ดํฌ ์๋ฅด๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/132265) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋กค์ผ์ดํฌ%20์๋ฅด๊ธฐ.swift) | `22.12.09` | |
| [๋ฌธ์์ด ์๋ฅด๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/140108) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ฌธ์์ด%20์๋ฅด๊ธฐ.swift) | `22.12.06` | |
| [๊ทค ๊ณ ๋ฅด๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/138476) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๊ทค%20๊ณ ๋ฅด๊ธฐ.swift) | `22.11.25` | dictionary ์ด๊ธฐํ |
| [๋ช ์์ ์ ๋น(1)](https://school.programmers.co.kr/learn/courses/30/lessons/131701) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ช ์์%20์ ๋น(1).swift) | `22.11.25` | |
| [์ฐ์ ๋ถ๋ถ ์์ด ํฉ์ ๊ฐ์](https://school.programmers.co.kr/learn/courses/30/lessons/131701) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ฐ์%20๋ถ๋ถ%20์์ด%20ํฉ์%20๊ฐ์.swift) | `22.11.25` | |
| [์น์์ด(2)](https://school.programmers.co.kr/learn/courses/30/lessons/133499) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์น์์ด(2).swift) | `22.11.23` | Array slice |
| [ํ๋ฒ๊ฑฐ ๋ง๋ค๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/133502) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ๋ฒ๊ฑฐ%20๋ง๋ค๊ธฐ.swift) | `22.11.23` | Array slice |
| [๊ณผ์ผ ์ฅ์](https://school.programmers.co.kr/learn/courses/30/lessons/135808) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๊ณผ์ผ%20์ฅ์.swift) | `22.11.17` | stride ์ฌ์ฉ |
| [๊ธฐ์ฌ๋จ์์ ๋ฌด๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/136798) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๊ธฐ์ฌ๋จ์์%20๋ฌด๊ธฐ.swift) | `22.11.17` | ์ฝ์ ๊ตฌํ๊ธฐ(์ ๊ณฑ๊ทผ) |
| [์ซ์ ์ง๊ฟ](https://school.programmers.co.kr/learn/courses/30/lessons/131128) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ซ์%20์ง๊ฟ.swift) | `22.11.17` | |
| [์ฝ๋ผ ๋ฌธ์ ](https://school.programmers.co.kr/learn/courses/30/lessons/132267) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ฝ๋ผ%20๋ฌธ์ .swift) | `22.11.16` | |
| [์ผ์ด์ฌ](https://school.programmers.co.kr/learn/courses/30/lessons/131705) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ผ์ด์ฌ.swift) | `22.10.19` | |
| [๊ฐ์ฅ ๊ธด ํธ๋ฆฐ๋๋กฌ](https://school.programmers.co.kr/learn/courses/30/lessons/12904) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๊ฐ์ฅ%20๊ธด%20ํธ๋ฆฐ๋๋กฌ.swift) | `22.09.23` | |
| [์์](https://school.programmers.co.kr/learn/courses/30/lessons/49191) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์์.swift) | `22.09.23` | |
| [[1์ฐจ]์ ํ๋ฒ์ค](https://school.programmers.co.kr/learn/courses/30/lessons/17678) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/[1์ฐจ]์ ํ๋ฒ์ค.swift) | `22.09.23` | ์๊ฐ๋ค๋ฃจ๊ธฐ |
| [์คํฐ์ปค ๋ชจ์ผ๊ธฐ(2)](https://school.programmers.co.kr/learn/courses/30/lessons/12971) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์คํฐ์ปค%20๋ชจ์ผ๊ธฐ(2).swift) | `22.09.23` | DP |
| [์ ๊ตญ์ฌ์ฌ](https://school.programmers.co.kr/learn/courses/30/lessons/43238) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์ ๊ตญ์ฌ์ฌ.swift) | `22.09.22` | ์ด์งํ์ |
| [๊ฒฝ์ฃผ๋ก ๊ฑด์ค](https://school.programmers.co.kr/learn/courses/30/lessons/67259) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๊ฒฝ์ฃผ๋ก%20๊ฑด์ค.swift) | `22.09.21` | DFS |
| [ํ ํธ์ง](https://school.programmers.co.kr/learn/courses/30/lessons/81303) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/ํ%20ํธ์ง.swift) | `22.09.21` | linked list |
| [๋์คํฌ ์ปจํธ๋กค๋ฌ](https://school.programmers.co.kr/learn/courses/30/lessons/42627) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๋์คํฌ%20์ปจํธ๋กค๋ฌ.swift) | `22.09.21` | |
| [์ฌํ๊ฒฝ๋ก](https://school.programmers.co.kr/learn/courses/30/lessons/43164) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์ฌํ๊ฒฝ๋ก.swift) | `22.09.20` | DFS |
| [๊ฐ์ฅ ๋จผ ๋ ธ๋](https://school.programmers.co.kr/learn/courses/30/lessons/49189) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๊ฐ์ฅ%20๋จผ%20๋ ธ๋.swift) | `22.09.17` | |
| [์ง๊ฒ๋ค๋ฆฌ ๊ฑด๋๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/64062) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์ง๊ฒ๋ค๋ฆฌ%20๊ฑด๋๊ธฐ.swift) | `22.09.14` | ์ด์งํ์ |
| [๊ธฐ์ง๊ตญ ์ค์น](https://school.programmers.co.kr/learn/courses/30/lessons/12979) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๊ธฐ์ง๊ตญ%20์ค์น.swift) | `22.09.14` | |
| [๋ถ๋ ์ฌ์ฉ์](https://school.programmers.co.kr/learn/courses/30/lessons/64064) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๋ถ๋%20์ฌ์ฉ์.swift) | `22.09.13` | ์กฐํฉ |
| [์ซ์ ๊ฒ์](https://school.programmers.co.kr/learn/courses/30/lessons/12987) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์ซ์%20๊ฒ์.swift) | `22.09.13` | |
| [๋ฒ ์คํธ์จ๋ฒ](https://school.programmers.co.kr/learn/courses/30/lessons/42579) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๋ฒ ์คํธ์จ๋ฒ.swift) | `22.09.13` | ํด์ |
| [๋จ์ด ๋ณํ](https://school.programmers.co.kr/learn/courses/30/lessons/43163) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๋จ์ด%20๋ณํ.swift) | `22.09.13` | BFS |
| [๋คํธ์ํฌ](https://school.programmers.co.kr/learn/courses/30/lessons/43162) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๋คํธ์ํฌ.swift) | `22.09.12` | DFS |
| [์ด์ค์ฐ์ ์์ํ](https://school.programmers.co.kr/learn/courses/30/lessons/42628) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์ด์ค์ฐ์ ์์ํ.swift) | `22.09.09` | ์ด์ค์ฐ์ ์์ํ |
| [์์ ๋์งํ](https://school.programmers.co.kr/learn/courses/30/lessons/12985) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์์%20๋์งํswift) | `22.09.08` | |
| [[3์ฐจ]์์ถ](https://school.programmers.co.kr/learn/courses/30/lessons/17684) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/[3์ฐจ]์์ถ.swift) | `22.09.07` | |
| [[3์ฐจ]ํ์ผ๋ช ์ ๋ ฌ](https://school.programmers.co.kr/learn/courses/30/lessons/17686) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/[3์ฐจ]ํ์ผ๋ช %20์ ๋ ฌ.swift) | `22.09.05` | ๋ฌธ์์ด ๋ค๋ฃจ๊ธฐ |
| [[3์ฐจ]n์ง์ ๊ฒ์](https://school.programmers.co.kr/learn/courses/30/lessons/17687) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/[3์ฐจ]n์ง์%20๊ฒ์.swift) | `22.09.02` | |
| [[1์ฐจ] ํ๋ ์ฆ4๋ธ๋ก](https://school.programmers.co.kr/learn/courses/30/lessons/17679) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/[1์ฐจ]%20ํ๋ ์ฆ4๋ธ๋ก.swift) | `22.09.01` | ๊ตฌํ, ๊ฒ์ |
| [ํผ๋ณด๋์น ์](https://school.programmers.co.kr/learn/courses/30/lessons/12945) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํผ๋ณด๋์น%20์.swift) | `22.09.01` | DP |
| [์นด๋ ์ง ๋ง์ถ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/72415) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์นด๋%20์ง%20๋ง์ถ๊ธฐ.swift) | `22.09.01` | BFS |
| [๊ด๊ณ ์ฝ์ ](https://school.programmers.co.kr/learn/courses/30/lessons/72414) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๊ด๊ณ %20์ฝ์ .swift) | `22.08.31` | |
| [ํฉ์น ํ์ ์๊ธ](https://school.programmers.co.kr/learn/courses/30/lessons/72413) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/ํฉ์น%20ํ์%20์๊ธ.swift) | `22.08.29` | ํ๋ก์ด๋-์์ |
| [์ฌ๋ผ์ง๋ ๋ฐํ](https://school.programmers.co.kr/learn/courses/30/lessons/92345) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/์ฌ๋ผ์ง๋%20๋ฐํ.swift) | `22.08.27` | ์์ ํ์ |
| [N์ผ๋ก ํํ](https://school.programmers.co.kr/learn/courses/30/lessons/42895) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/N์ผ๋ก%20ํํ.swift) | `22.08.23` | DFS, DP |
| [๋ ํ ํฉ ๊ฐ๊ฒ ๋ง๋ค๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/118667) | Level 2| [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋%20ํ%20ํฉ%20๊ฐ๊ฒ%20๋ง๋ค๊ธฐ.swift) | `22.08.22` | ํฌ ํฌ์ธํฐ |
| [๋ณด์ ์ผํ](https://school.programmers.co.kr/learn/courses/30/lessons/67258) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๋ณด์%20์ผํ.swift) | `22.08.22` | ํฌ ํฌ์ธํฐ |
| [์ฑ๊ฒฉ ์ ํ ๊ฒ์ฌํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/118666) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ฑ๊ฒฉ%20์ ํ%20๊ฒ์ฌํ๊ธฐ.swift) | `22.08.22` | ์กฐ๊ฑด ๋ถ๊ธฐ์ฒ๋ฆฌ |
| [N-Queen](https://school.programmers.co.kr/learn/courses/30/lessons/12952) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/N-Queen.swift) | `22.08.22` | DFS, ๋ฐฑํธ๋ํน |
| [๋ ๋ฐ๋จน๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12913) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ ๋ฐ๋จน๊ธฐ.swift) | `22.08.19` |
| [JadenCase ๋ฌธ์์ด ๋ง๋ค๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12951) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/JadenCase%20๋ฌธ์์ด%20๋ง๋ค๊ธฐ.swift) | `22.08.18` |
| [K์ง์์์ ์์ ๊ฐ์ ๊ตฌํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/92335) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/k์ง์์์%20์์%20๊ฐ์%20๊ตฌํ๊ธฐ.swift) | `22.08.18` |
| [[3์ฐจ]๋ฐฉ๊ธ๊ทธ๊ณก](https://school.programmers.co.kr/learn/courses/30/lessons/17683) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/[3์ฐจ]๋ฐฉ๊ธ๊ทธ๊ณก.swift) | `22.08.14` |
| [์คํฌํธ๋ฆฌ](https://school.programmers.co.kr/learn/courses/30/lessons/49993) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์คํฌํธ๋ฆฌ.swift) | `22.08.14` |
| [์ ๋ ฅ๋ง์ ๋๋ก ๋๋๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/86971) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ ๋ ฅ๋ง์%20๋๋ก%20๋๋๊ธฐ.swift) | `22.08.14` |
| [[1์ฐจ]์บ์](https://school.programmers.co.kr/learn/courses/30/lessons/17680) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/[1์ฐจ]์บ์.swift) | `22.08.06` |
| [๋ค์ ํฐ ์ซ์](https://school.programmers.co.kr/learn/courses/30/lessons/12911) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ค์%20ํฐ%20์ซ์.swift) | `22.08.05` |
| [๋ชจ์์ฌ์ ](https://school.programmers.co.kr/learn/courses/30/lessons/84512) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ชจ์์ฌ์ .swift) | `22.08.05` |
| [๊ฐ์ฅ ํฐ ์ ์ฌ๊ฐํ ์ฐพ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12905) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๊ฐ์ฅ%20ํฐ%20์ ์ฌ๊ฐํ%20์ฐพ๊ธฐ.swift) | `22.08.05` |
| [๋ฉ๋ฆฌ๋ฐ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12914) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ฉ๋ฆฌ๋ฐ๊ธฐ.swift) | `22.08.04` |
| [์ต๋๊ฐ๊ณผ ์ต์๊ฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12939) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ต๋๊ฐ๊ณผ%20์ต์๊ฐ.swift) | `22.08.04` |
| [ํ๋ ฌ์ ๊ณฑ์ ](https://school.programmers.co.kr/learn/courses/30/lessons/12949) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํ๋ ฌ์%20๊ณฑ์ .swift) | `22.08.03` |
| [์ต์๊ฐ ๋ง๋ค๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12941) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ต์๊ฐ%20๋ง๋ค๊ธฐ.swift) | `22.08.03` |
| [์นดํซ](https://school.programmers.co.kr/learn/courses/30/lessons/42842) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์นดํซ.swift) | `22.08.03` |
| [์ง์ง์ด ์ ๊ฑฐํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12973) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ง์ง์ด%20์ ๊ฑฐํ๊ธฐ.swift) | `22.08.03` |
| [์์ ์ฐพ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/42839) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์์%20์ฐพ๊ธฐ.swift) | `22.08.03` |
| [๋ธ๋ก ์ด๋ํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/60063) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/๋ธ๋ก%20์ด๋ํ๊ธฐ.swift) | `22.08.02` |
| [ํ๊ดด๋์ง ์์ ๊ฑด๋ฌผ](https://school.programmers.co.kr/learn/courses/30/lessons/92344) | Level 3| [๐ด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level3/ํ๊ดด๋์ง%20์์%20๊ฑด๋ฌผ.swift) | `22.08.01` |
| [์์ฅ](https://school.programmers.co.kr/learn/courses/30/lessons/42578) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์์ฅ.swift) | `22.08.01` |
| [์ฌ๋ฐ๋ฅธ ๊ดํธ](https://school.programmers.co.kr/learn/courses/30/lessons/12909) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ฌ๋ฐ๋ฅธ%20๊ดํธ.swift) | `22.08.01` |
| [N๊ฐ์ ์ต์๊ณต๋ฐฐ์](https://school.programmers.co.kr/learn/courses/30/lessons/12953) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/N๊ฐ์%20์ต์๊ณต๋ฐฐ์.swift) | `22.08.01` |
| [ํฐ ์ ๋ง๋ค๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/42883) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํฐ%20์%20๋ง๋ค๊ธฐ.swift) | `22.08.01` |
| [์ต๋๊ณต์ฝ์์ ์ต์๊ณต๋ฐฐ์](https://school.programmers.co.kr/learn/courses/30/lessons/12969) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ต๋๊ณต์ฝ์์%20์ต์๊ณต๋ฐฐ์.swift) | `22.08.01` |
| [์ง์ฌ๊ฐํ ๋ณ์ฐ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12969) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ง์ฌ๊ฐํ%20๋ณ์ฐ๊ธฐ.swift) | `22.07.31` |
| [ํ์ค๋ ์](https://school.programmers.co.kr/learn/courses/30/lessons/12947) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ์ค๋%20์.swift) | `22.07.30` |
| [์ ์ ์ ๊ณฑ๊ทผ ํ๋ณ](https://school.programmers.co.kr/learn/courses/30/lessons/12934) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ ์%20์ ๊ณฑ๊ทผ%20ํ๋ณ.swift) | `22.07.29` |
| [ํ๋ ฌ์ ๋ง์ ](https://school.programmers.co.kr/learn/courses/30/lessons/12950) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ๋ ฌ์%20๋ง์ .swift) | `22.07.28` |
| [x๋งํผ ๊ฐ๊ฒฉ์ด ์๋ n๊ฐ์ ์ซ์](https://school.programmers.co.kr/learn/courses/30/lessons/12954) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/x๋งํผ%20๊ฐ๊ฒฉ์ด%20์๋%20n๊ฐ์%20์ซ์.swift) | `22.07.27` |
| [์ฝ์์ ํฉ](https://school.programmers.co.kr/learn/courses/30/lessons/12928) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ฝ์์%20ํฉ.swift) | `22.07.27` |
| [์์ ์ฐพ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12921) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์์%20์ฐพ๊ธฐ.swift) | `22.07.27` |
| [๋ฌธ์์ด ๋ค๋ฃจ๊ธฐ ๊ธฐ๋ณธ](https://school.programmers.co.kr/learn/courses/30/lessons/12918) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ฌธ์์ด%20๋ค๋ฃจ๊ธฐ%20๊ธฐ๋ณธ.swift) | `22.07.27` |
| [ํ๋ณดํค](https://school.programmers.co.kr/learn/courses/30/lessons/42890) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํ๋ณดํค.swift) | `22.07.27` |
| [์์ ๊ฒ์](https://school.programmers.co.kr/learn/courses/30/lessons/72412) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์์%20๊ฒ์.swift) | `22.07.26` |
| [๋ฌธ์์ด ์์ถ](https://school.programmers.co.kr/learn/courses/30/lessons/60057) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ฌธ์์ด%20์์ถ.swift) | `22.07.26` |
| [์ ํ์ ์๊ฐ ์ด๋](https://school.programmers.co.kr/learn/courses/30/lessons/12978) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ ํ์%20์๊ฐ%20์ด๋.swift) | `22.07.26` |
| [ํธ๋ํฐ ๋ฒํธ ๊ฐ๋ฆฌ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12948) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํธ๋ํฐ%20๋ฒํธ%20๊ฐ๋ฆฌ๊ธฐ.swift) | `22.07.26` |
| [๋ฐฐ๋ฌ](https://school.programmers.co.kr/learn/courses/30/lessons/12978) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ฐฐ๋ฌ.swift) | `22.07.26` |
| [์ฝ๋ผ์ธ ์ถ์ธก](https://school.programmers.co.kr/learn/courses/30/lessons/12943) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ฝ๋ผ์ธ %20์ถ์ธก.swift) | `22.07.25` |
| [ํ๊ท ๊ตฌํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12944) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ๊ท %20๊ตฌํ๊ธฐ.swift) | `22.07.24` |
| [์ง์์ ํ์](https://school.programmers.co.kr/learn/courses/30/lessons/12937) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ง์์%20ํ์.swift) | `22.07.24` |
| [์ ์ผ ์์ ์ ์ ๊ฑฐํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12935) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ ์ผ%20์์%20์%20์ ๊ฑฐํ๊ธฐ.swift) | `22.07.23` |
| [์์ฐ์ ๋ค์ง์ด ๋ฐฐ์ด๋ก ๋ง๋ค๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12932) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์์ฐ์%20๋ค์ง์ด%20๋ฐฐ์ด๋ก%20๋ง๋ค๊ธฐ.swift) | `22.07.23` |
| [์์ด ๋๋ง์๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12981) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์์ด%20๋๋ง์๊ธฐ.swift) | `22.07.22` |
| [์ ์ ๋ด๋ฆผ์ฐจ์์ผ๋ก ๋ฐฐ์นํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12933) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ ์%20๋ด๋ฆผ์ฐจ์์ผ๋ก%20๋ฐฐ์นํ๊ธฐ.swift) | `22.07.22` |
| [์๋ฆฟ์ ๋ํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12931) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์๋ฆฟ์%20๋ํ๊ธฐ.swift) | `22.07.22` |
| [์์ ์ํธ](https://school.programmers.co.kr/learn/courses/30/lessons/12926) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์์ %20์ํธ.swift) | `22.07.21` |
| [์ด์ํ ๋ฌธ์ ๋ง๋ค๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12930) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ด์ํ%20๋ฌธ์%20๋ง๋ค๊ธฐ.swift) | `22.07.21` |
| [๋ฌธ์์ด์ ์ ์๋ก ๋ฐ๊พธ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12925) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ฌธ์์ด์%20์ ์๋ก%20๋ฐ๊พธ๊ธฐ.swift) | `22.07.20` |
| [๋ค๋ฆฌ๋ฅผ ์ง๋๋ ํธ๋ญ](https://school.programmers.co.kr/learn/courses/30/lessons/42583) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ค๋ฆฌ๋ฅผ%20์ง๋๋%20ํธ๋ญ.swift) | `22.07.20` |
| [์๋ฐ์๋ฐ์๋ฐ์๋ฐ์๋ฐ์?](https://school.programmers.co.kr/learn/courses/30/lessons/12922) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์๋ฐ์๋ฐ์๋ฐ์๋ฐ์๋ฐ์%3F.swift.swift) | `22.07.20` |
| [์์ธ์์ ๊น์๋ฐฉ ์ฐพ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12919) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์์ธ์์%20๊น์๋ฐฉ%20์ฐพ๊ธฐ.swift) | `22.07.20` |
| [์กฐ์ด์คํฑ](https://school.programmers.co.kr/learn/courses/30/lessons/42860) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์กฐ์ด์คํฑ.swift) | `22.07.17` |
| [๋ฌธ์์ด ๋ด p์ y ์ ๊ฐ์](https://school.programmers.co.kr/learn/courses/30/lessons/12916) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ฌธ์์ด%20๋ด%20p์%20y์%20๊ฐ์.swift) | `22.07.17` |
| [๋ฌธ์์ด ๋ด ๋ง์๋๋ก ์ ๋ ฌํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/12915) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ฌธ์์ด%20๋ด%20๋ง์๋๋ก%20์ ๋ ฌํ๊ธฐ.swift) | `22.07.17` |
| [[1์ฐจ] ๋ด์ค ํด๋ฌ์คํฐ๋ง](https://school.programmers.co.kr/learn/courses/30/lessons/17677) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/%5B1์ฐจ%5D%20๋ด์ค%20ํด๋ฌ์คํฐ๋ง.swift) | `22.07.17` |
| [๋ ์ ์ ์ฌ์ด์ ํฉ](https://school.programmers.co.kr/learn/courses/30/lessons/12910) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋%20์ ์%20์ฌ์ด์%20ํฉ.swift) | `22.07.16` |
| [๋๋์ด ๋จ์ด์ง๋ ์ซ์ ๋ฐฐ์ด](https://school.programmers.co.kr/learn/courses/30/lessons/12910) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋๋์ด%20๋จ์ด์ง๋%20์ซ์%20๋ฐฐ์ด.swift) | `22.07.16` |
| [์์ ์ต๋ํ](https://school.programmers.co.kr/learn/courses/30/lessons/67257) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์์%20์ต๋ํ.swift) | `22.07.16` |
| [[1์ฐจ] ๋คํธ ๊ฒ์](https://school.programmers.co.kr/learn/courses/30/lessons/17682) | Level 1| [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/%5B1์ฐจ%5D%20๋คํธ%20๊ฒ์.swift) | `22.07.16` |
| [์ต์์ง์ฌ๊ฐํ](https://school.programmers.co.kr/learn/courses/30/lessons/86491) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ต์์ง์ฌ๊ฐํ.swift) | `22.07.15` |
| [ํผ๋ก๋](https://school.programmers.co.kr/learn/courses/30/lessons/87946) | Level 2| [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํผ๋ก๋.swift) | `22.07.14` |
| [2016๋ ](https://school.programmers.co.kr/learn/courses/30/lessons/12901) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/2016๋ .swift) | `22.07.14` |
| [๋ฐฉ๋ฌธ ๊ธธ์ด](https://school.programmers.co.kr/learn/courses/30/lessons/49994) | Level 2 | [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ฐฉ๋ฌธ%20๊ธธ์ด.swift) | `22.07.13` |
| [ํ๊ฒ ๋๋ฒ](https://school.programmers.co.kr/learn/courses/30/lessons/43165) | Level 2 | [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํ๊ฒ%20๋๋ฒ.swift) | `22.07.13` |
| [๋ถ์กฑํ ๊ธ์ก ๊ณ์ฐํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/82612) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ถ์กฑํ%20๊ธ์ก%20๊ณ์ฐํ๊ธฐ.swift) | `22.07.13` |
| [[1์ฐจ] ๋น๋ฐ์ง๋](https://school.programmers.co.kr/learn/courses/30/lessons/17681) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/%5B1์ฐจ%5D%20๋น๋ฐ์ง๋.swift) | `22.07.13` |
| [์ด์ง ๋ณํ ๋ฐ๋ณตํ๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/70129) | Level 2 | [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ด์ง%20๋ณํ%20๋ฐ๋ณตํ๊ธฐ.swift) | `22.07.11` |
| [์ผ๊ฐ ๋ฌํฝ์ด](https://school.programmers.co.kr/learn/courses/30/lessons/68645) | Level 2 | [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ผ๊ฐ%20๋ฌํฝ์ด.swift) | `22.07.10` |
| [3์ง๋ฒ ๋ค์ง๊ธฐ](https://school.programmers.co.kr/learn/courses/30/lessons/68935) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/3์ง๋ฒ%20๋ค์ง๊ธฐ.swift) | `22.07.10` |
| [ํ๋ฆฐํฐ](https://school.programmers.co.kr/learn/courses/30/lessons/42587) | Level 2 | [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํ๋ฆฐํฐ.swift) | `22.07.10` |
| [๊ธฐ๋ฅ๊ฐ๋ฐ](https://school.programmers.co.kr/learn/courses/30/lessons/42586) | Level 2 | [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๊ธฐ๋ฅ๊ฐ๋ฐ.swift) | `22.07.09` |
| [ํํ](https://school.programmers.co.kr/learn/courses/30/lessons/64065) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํํ.swift) | `22.07.08` |
| [๋ชจ์๊ณ ์ฌ](https://school.programmers.co.kr/learn/courses/30/lessons/42840) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ชจ์๊ณ ์ฌ.swift) | `22.07.08` |
| [๋ฉ์ฉกํ ์ฌ๊ฐ](https://programmers.co.kr/learn/courses/30/lessons/62048) | Level 2 | [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ฉ์ฉกํ%20์ฌ๊ฐํ.swift) | `22.07.03` |
| [๋ด์ ](https://programmers.co.kr/learn/courses/30/lessons/70128) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋ด์ .swift) | `22.07.03` |
| [๊ดํธ ํ์ ํ๊ธฐ](https://programmers.co.kr/learn/courses/30/lessons/76502) | Level 2 | [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๊ดํธ%20ํ์ ํ๊ธฐ.swift) | `22.07.02` |
| [2๊ฐ ์ดํ๋ก ๋ค๋ฅธ ๋นํธ](https://programmers.co.kr/learn/courses/30/lessons/77885) | Level 2 | [๐๏ธโโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/2๊ฐ%20์ดํ๋ก%20๋ค๋ฅธ%20๋นํธ.swift) | `22.07.02` |
| [์ฝ์์ ๊ฐ์์ ๋ง์ ](https://programmers.co.kr/learn/courses/30/lessons/77884) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ฝ์์%20๊ฐ์์%20๋ง์ .swift) | `22.07.02` |
| [์์ ๋ํ๊ธฐ](https://programmers.co.kr/learn/courses/30/lessons/76501) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์์%20๋ํ๊ธฐ.swift) | `22.07.01` |
[n^2 ๋ฐฐ์ด ์๋ฅด๊ธฐ](https://programmers.co.kr/learn/courses/30/lessons/87390) | Level 2 | [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/n%5E2%20๋ฐฐ์ด%20์๋ฅด๊ธฐ.swift) | `22.07.01` |
[๋น์ ๊ฒฝ๋ก ์ฌ์ดํด](https://programmers.co.kr/learn/courses/30/lessons/86052) | Level 2 | [๐๏ธโ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋น์%20๊ฒฝ๋ก%20์ฌ์ดํด.swift) | `22.06.29` |
[๋๋จธ์ง๊ฐ 1์ด ๋๋ ์ ์ฐพ๊ธฐ](https://programmers.co.kr/learn/courses/30/lessons/87389) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/๋๋จธ์ง๊ฐ%201์ด%20๋๋%20์%20์ฐพ๊ธฐ.swift) | `22.06.29` |
| [์๋ ์ซ์ ๋ํ๊ธฐ](https://programmers.co.kr/learn/courses/30/lessons/86051?language=swift) | Level 1 | [๐โโ๏ธ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์๋%20์ซ์%20๋ํ๊ธฐ.swift) | `22.06.21` |
| K๋ฒ์งธ์ | Level 1 | [๐ซ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ์ด/K๋ฒ์งธ์.md) | |
| ๋ ๊ฐ ๋ฝ์์ ๋ํ๊ธฐ | Level 1 | [๐ซ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ์ด/๋%20๊ฐ%20๋ฝ์์%20๋ํ๊ธฐ.md) | |
| ์ฒด์ก๋ณต | Level1 | [๐ซ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ์ด/์ฒด์ก๋ณต.md) | |
| ๊ฐ์ด๋ฐ ๊ธ์ ๊ฐ์ ธ์ค๊ธฐ | Level 1 | [๐ซ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ์ด/๊ฐ์ด๋ฐ%20๊ธ์%20๊ฐ์ ธ์ค๊ธฐ.md) | |
| ๋ฌธ์์ด ๋ด๋ฆผ์ฐจ์์ผ๋ก ๋ฐฐ์นํ๊ธฐ | Level 1 | [๐ซ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ์ด/๋ฌธ์์ด%20๋ด๋ฆผ์ฐจ์์ผ๋ก%20๋ฐฐ์นํ๊ธฐ.md) | |
| ํฌ๋ ์ธ ์ธํ๋ฝ๊ธฐ ๊ฒ์ | Level 1 | [๐ซ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ์ด/ํฌ๋ ์ธ%20์ธํ๋ฝ๊ธฐ%20๊ฒ์.md) | |
| ์ ๊ท ์์ด๋ ์ถ์ฒ | Level 1 | [๐ซ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/ํ์ด/์ ๊ท%20์์ด๋%20์ถ์ฒ.md) | |
| ์ซ์ ๋ฌธ์์ด๊ณผ ์๋จ์ด | Level 1 | [๐ซ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ซ์%20๋ฌธ์์ด๊ณผ%20์๋จ์ด.playground/Contents.swift) | `21.09.14` |
| ์คํจ์จ | Level 1 | [๐ซ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์คํจ์จ.playground/Contents.swift)| `21.09.20` |
| ์ ๊ณ ๊ฒฐ๊ณผ ๋ฐ๊ธฐ | Level 1 | [๐ฆ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level1/์ ๊ณ %20๊ฒฐ๊ณผ%20๋ฐ๊ธฐ.swift)| `22.05.06` |
| ๊ฐ์ฅ ํฐ ์ | Level 2 | [๐ ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํ์ด/๊ฐ์ฅ%20ํฐ%20์.md) | |
| H-Index | Level 2 | [๐ ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/ํ์ด/H-Index.md) | |
| ๊ฑฐ๋ฆฌ๋๊ธฐ ํ์ธํ๊ธฐ(BFS) | Level 2 | [๐ ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๊ฑฐ๋ฆฌ๋๊ธฐํ์ธํ๊ธฐ(BFS).playground/Contents.swift) | `21.09.09` |
| ๋ฉ๋ด ๋ฆฌ๋ด์ผ | Level 2 | [๐ ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/๋ฉ๋ด๋ฆฌ๋ด์ผ.playground/Contents.swift) | `21.09.10` |
| ์คํ์ฑํ ๋ฐฉ | Level 2 | [๐ ](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์คํ์ฑํ ๋ฐฉ.playground/Contents.swift) | `21.10.13` |
| ์ฃผ์ฐจ ์๊ธ ๊ณ์ฐ | Level 2 | [๐ฅด](https://github.com/hyun99999/algorithm-Swift/blob/master/Level2/์ฃผ์ฐจ%20์๊ธ%20๊ณ์ฐ.swift) | `22.05.06` |