Skip to content

Commit 0a4d003

Browse files
Merge pull request #2 from computer-science-uniovi/development
Update from development to master
2 parents fcc976f + 0caefda commit 0a4d003

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+3298
-3898
lines changed

.gitignore

+67-57
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,85 @@
1-
# Directories #
2-
/build/
3-
/build
4-
*/bin/
5-
/bin/
6-
target/
7-
build/
8-
9-
# OS Files #
10-
.DS_Store
11-
12-
*.class
13-
14-
# Package Files #
15-
*.jar
16-
*.war
17-
*.ear
18-
*.db
19-
20-
######################
21-
# Windows
22-
######################
23-
24-
# Windows image file caches
25-
Thumbs.db
26-
27-
# Folder config file
28-
Desktop.ini
29-
30-
######################
31-
# OSX
32-
######################
33-
34-
.DS_Store
35-
.svn
36-
37-
# Thumbnails
38-
._*
1+
/target/
392

40-
# Files that might appear on external disk
41-
.Spotlight-V100
42-
.Trashes
43-
44-
45-
######################
46-
# Eclipse
47-
######################
48-
49-
*.pydevproject
503
.metadata
51-
bin/**
52-
tmp/**
53-
tmp/**/*
4+
bin/
5+
tmp/
546
*.tmp
557
*.bak
568
*.swp
579
*~.nib
5810
local.properties
59-
.classpath
6011
.settings/
6112
.loadpath
62-
/src/main/resources/rebel.xml
13+
.recommenders
14+
15+
# Eclipse Core
16+
.project
17+
6318
# External tool builders
6419
.externalToolBuilders/
6520

6621
# Locally stored "Eclipse launch configurations"
6722
*.launch
6823

69-
# CDT-specific
24+
# PyDev specific (Python IDE for Eclipse)
25+
*.pydevproject
26+
27+
# CDT-specific (C/C++ Development Tooling)
7028
.cproject
7129

72-
# PDT-specific
30+
# JDT-specific (Eclipse Java Development Tools)
31+
.classpath
32+
33+
# Java annotation processor (APT)
34+
.factorypath
35+
36+
# PDT-specific (PHP Development Tools)
7337
.buildpath
74-
*/.gradle/
75-
.gradle/
38+
39+
# sbteclipse plugin
40+
.target
41+
42+
# Tern plugin
43+
.tern-project
44+
45+
# TeXlipse plugin
46+
.texlipse
47+
48+
# STS (Spring Tool Suite)
49+
.springBeans
50+
51+
# Code Recommenders
52+
.recommenders/
53+
54+
.DS_Store
55+
56+
# User-specific stuff:
57+
.idea/**/workspace.xml
58+
.idea/**/tasks.xml
59+
60+
# Sensitive or high-churn files:
61+
.idea/**/dataSources/
62+
.idea/**/dataSources.ids
63+
.idea/**/dataSources.xml
64+
.idea/**/dataSources.local.xml
65+
.idea/**/sqlDataSources.xml
66+
.idea/**/dynamic.xml
67+
.idea/**/uiDesigner.xml
68+
69+
# Gradle:
70+
.idea/**/gradle.xml
71+
.idea/**/libraries
72+
73+
# Mongo Explorer plugin:
74+
.idea/**/mongoSettings.xml
75+
76+
## File-based project format:
77+
*.iws
78+
79+
# IntelliJ
80+
/out/
81+
82+
83+
.idea/
84+
/.gradle/
85+
/build/

algorithms-search/linear-search/readme.md

-13
This file was deleted.

algorithms-sort/bubble-sort/readme.md

-14
This file was deleted.

algorithms-sort/insertion-sort/readme.md

-86
This file was deleted.

algorithms-sort/quick-sort/readme.md

-11
This file was deleted.

algorithms-sort/selection-sort/readme.md

-55
This file was deleted.

0 commit comments

Comments
 (0)