0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 15:18:46 +00:00
This commit is contained in:
Baoshuo Ren 2020-08-01 14:18:49 +08:00 committed by Baoshuo Ren
commit b04bf645b3
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68
3 changed files with 46 additions and 0 deletions

3
.gitattributes vendored Normal file
View File

@ -0,0 +1,3 @@
*.in filter=lfs diff=lfs merge=lfs -text
*.out filter=lfs diff=lfs merge=lfs -text
*.ans filter=lfs diff=lfs merge=lfs -text

38
.gitignore vendored Normal file
View File

@ -0,0 +1,38 @@
## https://github.com/github/gitignore/blob/master/C%2B%2B.gitignore
# Prerequisites
*.d
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
# Data
!*/data/*
!*/data/*

5
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"files.associations": {
"iostream": "cpp"
}
}