Skip to content

Commit 48b3e57

Browse files
committed
Quartz sync: May 19, 2025, 6:09 PM
1 parent 163f29e commit 48b3e57

File tree

4 files changed

+52
-1
lines changed

4 files changed

+52
-1
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
description:
3+
created: 2025-05-19
4+
modified: 2025-05-19
5+
tags:
6+
- moc
7+
status:
8+
- 🗺️
9+
---
10+
11+
# Index
12+
## BOJ
13+
- #ps/boj/bronze
14+
- #ps/boj/silver
15+
- #ps/boj/gold
16+
- #ps/boj/platinum
17+
- #ps/boj/diamond
18+
- #ps/boj/ruby
19+
- #ps/boj/unrated
20+
- #ps/boj/unknown
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# ps
2+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
tags: ["ps/boj/silver/2", "ps/boj/silver", "cs/algorithms/bruteforcing/ps","cs/algorithms/implementation/ps"]
3+
---
4+
5+
# Problem
6+
- [https://www.acmicpc.net/problem/18111](https://www.acmicpc.net/problem/18111)
7+
8+
# Logic
9+
10+
# My Code
11+
12+
```cpp title="boj/18111.cpp"
13+
14+
#include <vector>
15+
void solution()
16+
{
17+
}
18+
19+
20+
```

obsidian-content-sync.sh

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,14 @@ fi
3535

3636
for ((i = 0; i < len; i++)); do
3737
echo "$basic_path${allow_path[$i]}" "$pre_fix${output_path[$i]}"
38-
rsync -av --delete "$basic_path${allow_path[$i]}" "$pre_fix${output_path[$i]}"
38+
rsync -av \
39+
--delete \
40+
--filter='- /.git/' \
41+
--filter='- /.vscode/' \
42+
--filter='- .*/' \
43+
--filter='+ */' \
44+
--filter='+ *.md' \
45+
--filter='- *' \
46+
"$basic_path${allow_path[$i]}" \
47+
"$pre_fix${output_path[$i]}"
3948
done

0 commit comments

Comments
 (0)