Skip to content

Commit 7cf0b99

Browse files
committed
#Modification 52
0 parents  commit 7cf0b99

282 files changed

Lines changed: 11371 additions & 0 deletions

File tree

Some content is hidden

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

.cph/.Append.java_7d2b8bb570ab4d08b71fd1cd68eb8af0.prob

Whitespace-only changes.

.github/ISSUE_TEMPLATE/bug_report.md

Whitespace-only changes.

.github/ISSUE_TEMPLATE/custom.md

Whitespace-only changes.

.github/ISSUE_TEMPLATE/feature_request.md

Whitespace-only changes.

.github/workflows/maven.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Java CI with Maven
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up JDK 11
20+
uses: actions/setup-java@v2
21+
with:
22+
java-version: '11'
23+
distribution: 'adopt'
24+
- name: Build with Maven
25+
run: mvn -B package --file pom.xml

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
$ ls
2+
algorithm.class algorithm.java program.class program.java
3+
$ git status
4+
On branch master
5+
6+
Initial commit
7+
8+
Untracked files:
9+
(use "git add ..." to include in what will be committed)
10+
11+
algorithm.class
12+
algorithm.java
13+
program.class
14+
program.java
15+
16+
nothing added to commit but untracked files present (use "git add" to track)
17+
.class

.vs/ProjectSettings.json

Whitespace-only changes.

.vs/VSWorkspaceState.json

Whitespace-only changes.

.vs/slnx.sqlite

Whitespace-only changes.

.vs/src/v16/.suo

Whitespace-only changes.

0 commit comments

Comments
 (0)