Skip to content

Commit a127416

Browse files
authored
Merge pull request #17 from einbergisak/isak/documentation
docs: Add documentation from previous repo, with added CCN docs. #15 #16
2 parents a584ca2 + 90cb2fc commit a127416

File tree

4 files changed

+140
-242
lines changed

4 files changed

+140
-242
lines changed

CONTRIBUTING.md

-29
This file was deleted.

README-ko.md

-191
This file was deleted.

README.md

+14-22
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
1-
# The Algorithms - Java
2-
3-
[![Build](https://github.com/TheAlgorithms/Java/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/TheAlgorithms/Java/actions/workflows/build.yml)
4-
[![Discord chat](https://img.shields.io/discord/808045925556682782.svg?logo=discord&colorB=7289DA&style=flat-square)](https://discord.gg/c7MnfGFGa6)
5-
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/TheAlgorithms/Java)
6-
7-
8-
You can run and edit the algorithms, or contribute to them using Gitpod.io (a free online development environment) with a single click.
9-
10-
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/TheAlgorithms/Java)
11-
12-
### All algorithms are implemented in Java (for educational purposes)
13-
These implementations are intended for learning purposes. As such, they may be less efficient than the Java standard library.
14-
15-
## Contribution Guidelines
16-
Please read our [Contribution Guidelines](CONTRIBUTING.md) before you contribute to this project.
17-
18-
## Community Channel
19-
We're on [Gitter](https://gitter.im/TheAlgorithms)! Come join us.
20-
21-
## Algorithms
22-
Our [directory](DIRECTORY.md) has the full list of applications.
1+
# code-complexity-g17
2+
The third assignment for Software Engineering Fundamentals masters course at KTH.
3+
4+
## Git Commit Message Template
5+
### `type(domain): Description #issuenumber`
6+
### Types
7+
- `build`: Changes that affect the build system or external dependencies (example scopes: broccoli, npm).
8+
- `docs`: Documentation only changes.
9+
- `feat`: A new feature. Can of course also contain tests for the feature.
10+
- `fix`: Bug fixes. Can of course also contain tests for the feature.
11+
- `refactor`: A code change that neither fixes a bug nor adds a feature.
12+
- `revert`: Reverts a previous commit.
13+
- `style`: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc).
14+
- `test`: Adding missing tests or correcting existing tests.

0 commit comments

Comments
 (0)