Skip to content

Commit a52fd83

Browse files
committed
Clean up, comments and gitignore for Idea
1 parent ef4aa8c commit a52fd83

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,8 @@ nb-configuration.xml
3535

3636
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
3737
hs_err_pid*
38+
39+
# idea
40+
41+
.idea
42+
*.iml

pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,20 @@
7070
</executions>
7171
</plugin>
7272

73+
<plugin>
74+
<groupId>org.scalatest</groupId>
75+
<artifactId>scalatest-maven-plugin</artifactId>
76+
<version>1.0</version>
77+
<executions>
78+
<execution>
79+
<id>test</id>
80+
<goals>
81+
<goal>test</goal>
82+
</goals>
83+
</execution>
84+
</executions>
85+
</plugin>
86+
7387
<plugin>
7488
<groupId>org.apache.maven.plugins</groupId>
7589
<artifactId>maven-compiler-plugin</artifactId>

src/main/java/codechallenges/concurrent/semaphore/buffer/BoundedBuffer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* BoundedBuffer
1010
*
11-
* Bounded buffer has purpose in Produces-Consumer scenario.
11+
* Bounded buffer has purpose in Producer-Consumer scenario.
1212
*
1313
* Main requirements are:
1414
*

src/main/java/codechallenges/dynamicprogramming/LongestCommonSubsequence.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
import static java.lang.Math.max;
44
import java.util.Arrays;
55

6+
67
/**
78
* The Longest Common Subsequence
89
*
910
* Given two sequences S1 and S2, find longest common subsequence S
1011
*
11-
* @author qza
1212
*/
1313
public class LongestCommonSubsequence {
1414

src/main/java/codechallenges/model/graph/Graph.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
* @see Vertex
1414
* @see Edge
1515
*
16-
* @author qza
1716
*/
1817
public interface Graph {
1918

src/main/scala/codechallenges/methods/NewtonSquareRoots.scala

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

src/test/java/codechallenges/dynamicprogramming/KnapsackTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
import static org.junit.Assert.assertArrayEquals;
1111

12+
import codechallenges.dynamicprogramming.Knapsack;
13+
1214
/**
1315
*
1416
* @author qza

src/test/java/codechallenges/dynamicprogramming/LongestCommonSubsequenceTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
import static org.junit.Assert.assertArrayEquals;
1111

12+
import codechallenges.dynamicprogramming.LongestCommonSubsequence;
13+
1214
/**
1315
*
1416
* @author qza

0 commit comments

Comments
 (0)