Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit09e6f5a

Browse files
authored
Merge pull request#3 from JavaCheatsheet/foobar-level5
Google Foobar Level 5 Complete
2 parents8bf7b20 +4b892ae commit09e6f5a

File tree

55 files changed

+3132
-43
lines changed

Some content is hidden

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

55 files changed

+3132
-43
lines changed

‎.classpath‎

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentrykind="con"path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4+
<classpathentryexcluding="google/codejam/vestigium/|hackerrank/Mathematics/"kind="src"path="src"/>
5+
<classpathentrykind="src"path="src/google/codejam/vestigium"/>
6+
<classpathentrykind="src"path="src/hackerrank/Mathematics"/>
7+
<classpathentrykind="lib"path="lib/annotations-20.1.0.jar"/>
8+
<classpathentrykind="lib"path="lib/apiguardian-api-1.0.0.jar"/>
9+
<classpathentrykind="lib"path="lib/apiguardian-api-1.1.0.jar"/>
10+
<classpathentrykind="lib"path="lib/junit-commons-5.0.0-ALPHA-sources.jar"/>
11+
<classpathentrykind="lib"path="lib/junit-commons-5.0.0-ALPHA.jar"/>
12+
<classpathentrykind="lib"path="lib/junit-jupiter-5.4.2.jar"/>
13+
<classpathentrykind="lib"path="lib/junit-jupiter-api-5.4.2.jar"/>
14+
<classpathentrykind="lib"path="lib/junit-jupiter-api-5.5.0.jar"/>
15+
<classpathentrykind="lib"path="lib/junit-jupiter-engine-5.4.2.jar"/>
16+
<classpathentrykind="lib"path="lib/junit-jupiter-params-5.4.2.jar"/>
17+
<classpathentrykind="lib"path="lib/junit-platform-commons-1.4.2.jar"/>
18+
<classpathentrykind="lib"path="lib/junit-platform-commons-1.5.0.jar"/>
19+
<classpathentrykind="lib"path="lib/junit-platform-engine-1.4.2.jar"/>
20+
<classpathentrykind="lib"path="lib/junit5-api-5.0.0-ALPHA-sources.jar"/>
21+
<classpathentrykind="lib"path="lib/junit5-api-5.0.0-ALPHA.jar"/>
22+
<classpathentrykind="lib"path="lib/opentest4j-1.0.0-ALPHA-sources.jar"/>
23+
<classpathentrykind="lib"path="lib/opentest4j-1.0.0-ALPHA.jar"/>
24+
<classpathentrykind="lib"path="lib/opentest4j-1.1.1.jar"/>
25+
<classpathentrykind="lib"path="lib/opentest4j-1.2.0.jar"/>
26+
<classpathentrykind="lib"path="thirdparty-dependencies/algs4.jar"/>
27+
<classpathentrykind="lib"path="thirdparty-dependencies/mysql-connector-java-8.0.16.jar"/>
28+
<classpathentrykind="con"path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
29+
<classpathentrykind="output"path="out/production/codechallenge"/>
30+
</classpath>

‎.project‎

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>codechallenge</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
----------------------------------------------
1+
A----------------------------------------------
22

33

44
OBJECTIVE - Become A Competitive Programmer

‎codechallenge.srctrlbm‎

9 KB
Binary file not shown.

‎codechallenge.srctrldb‎

3.11 MB
Binary file not shown.

‎codechallenge.srctrlprj‎

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<config>
3+
<source_groups>
4+
<source_group_747ca5a9-93a7-4606-8587-c8a2657324ad>
5+
<java_standard>12</java_standard>
6+
<name>Java Source Group</name>
7+
<source_extensions>
8+
<source_extension>.java</source_extension>
9+
</source_extensions>
10+
<source_paths>
11+
<source_path>./</source_path>
12+
</source_paths>
13+
<status>enabled</status>
14+
<type>Java Source Group</type>
15+
<use_jre_system_library>1</use_jre_system_library>
16+
</source_group_747ca5a9-93a7-4606-8587-c8a2657324ad>
17+
</source_groups>
18+
<version>8</version>
19+
</config>

‎src/google/Level1/README.md‎

Lines changed: 0 additions & 41 deletions
This file was deleted.

‎src/google/Level3/Part2/SolutionTest.java‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
packagegoogle.Level3.Part2;
22

3-
importgoogle.Level2.Part1.SecondSolution;
43
importorg.junit.jupiter.api.Assertions;
54
importorg.junit.jupiter.api.Test;
65

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp