Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hyun99999/algorithm-swift

๐Ÿซฃ ์Šค์œ„ํ”„ํŠธ ์•Œ๊ณ ๋ฆฌ์ฆ˜ ๋Œ€์ž‘์ „
https://github.com/hyun99999/algorithm-swift

algorithm swift

Last synced: 8 days ago
JSON representation

๐Ÿซฃ ์Šค์œ„ํ”„ํŠธ ์•Œ๊ณ ๋ฆฌ์ฆ˜ ๋Œ€์ž‘์ „

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` |