Skip to content

Commit 2bd76d2

Browse files
committed
style check
1 parent c20a1c4 commit 2bd76d2

31 files changed

+61
-61
lines changed

src/main/java/joshua/leetcode/array/RotateImage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.array;
44

55
/**
66
* 48. Rotate Image<br>
77
* <a href="https://leetcode.com/problems/rotate-image/">leetcode link</a>
88
*
9-
* @author Jiang Yong ([email protected])
9+
* @author Jiang Yong
1010
*/
1111
public abstract class RotateImage {
1212

src/main/java/joshua/leetcode/array/binarysearch/FindTheDuplicateNumber.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.array.binarysearch;
44

@@ -7,7 +7,7 @@
77
* <p/>
88
* <a href = "https://leetcode.com/problems/find-the-duplicate-number/">leetcode link</a>
99
*
10-
* @author Jiang Yong ([email protected])
10+
* @author Jiang Yong
1111
*/
1212
public abstract class FindTheDuplicateNumber {
1313

src/main/java/joshua/leetcode/array/twopointers/MinimumWindowSubstring.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.array.twopointers;
44

@@ -9,7 +9,7 @@
99
* <p/>
1010
* <a href = "https://leetcode.com/problems/minimum-window-substring/">leetcode link</a>
1111
*
12-
* @author Jiang Yong ([email protected])
12+
* @author Jiang Yong
1313
*/
1414
public abstract class MinimumWindowSubstring {
1515

src/main/java/joshua/leetcode/array/twopointers/TwoSum2.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.array.twopointers;
44

@@ -10,7 +10,7 @@
1010
* <p/>
1111
* <a href = "https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/">leetcode link</a>
1212
*
13-
* @author Jiang Yong ([email protected])
13+
* @author Jiang Yong
1414
*/
1515
public abstract class TwoSum2 {
1616

src/main/java/joshua/leetcode/array/unionfind/NumberOfIslands.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.array.unionfind;
44

@@ -12,7 +12,7 @@
1212
* <p/>
1313
* <a href="https://leetcode.com/problems/number-of-islands/">leetcode link</a>
1414
*
15-
* @author Jiang Yong ([email protected])
15+
* @author Jiang Yong
1616
*/
1717
public abstract class NumberOfIslands {
1818

src/main/java/joshua/leetcode/backtracking/GrayCode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.backtracking;
44

@@ -9,7 +9,7 @@
99
* 89. Gray Code <br>
1010
* <a href = "https://leetcode.com/problems/gray-code/">leetcode link</a>
1111
*
12-
* @author Jiang Yong ([email protected])
12+
* @author Jiang Yong
1313
*/
1414
public abstract class GrayCode {
1515

src/main/java/joshua/leetcode/bfs/WordLadder2.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.bfs;
44

@@ -9,7 +9,7 @@
99
* <p/>
1010
* <a href="https://leetcode.com/problems/word-ladder-ii/">leetcode link</a>
1111
*
12-
* @author Jiang Yong ([email protected])
12+
* @author Jiang Yong
1313
*/
1414
public abstract class WordLadder2 {
1515

src/main/java/joshua/leetcode/binarytree/SameTree.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.binarytree;
44

@@ -9,7 +9,7 @@
99
* <p/>
1010
* <a href = "https://leetcode.com/problems/same-tree/">leetcode link</a>
1111
*
12-
* @author Jiang Yong ([email protected])
12+
* @author Jiang Yong
1313
*/
1414
public abstract class SameTree {
1515

src/main/java/joshua/leetcode/binarytree/SerializeDeserializeBinaryTree.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.binarytree;
44

@@ -10,7 +10,7 @@
1010
* <p/>
1111
* <a href = "https://leetcode.com/problems/serialize-and-deserialize-binary-tree/">leetcode link</a>
1212
*
13-
* @author Jiang Yong ([email protected])
13+
* @author Jiang Yong
1414
*/
1515
public abstract class SerializeDeserializeBinaryTree {
1616

src/main/java/joshua/leetcode/binarytree/bst/LargestBSTSubtree.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.binarytree.bst;
44

@@ -9,7 +9,7 @@
99
* <p/>
1010
* <a href="https://leetcode.com/problems/largest-bst-subtree/">leetcode link</a>
1111
*
12-
* @author Jiang Yong ([email protected])
12+
* @author Jiang Yong
1313
*/
1414
public abstract class LargestBSTSubtree {
1515

src/main/java/joshua/leetcode/design/MedianFinder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.design;
44

@@ -11,7 +11,7 @@
1111
* <p/>
1212
* <a href="https://leetcode.com/problems/find-median-from-data-stream/">leetcode link</a>
1313
*
14-
* @author Jiang Yong ([email protected])
14+
* @author Jiang Yong
1515
*/
1616
public abstract class MedianFinder {
1717

src/main/java/joshua/leetcode/hashtable/GroupAnagrams.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.hashtable;
44

@@ -15,7 +15,7 @@
1515
* 49. Group Anagrams<br/>
1616
* <a href="https://leetcode.com/problems/anagrams/">leetcode link</a>
1717
*
18-
* @author Jiang Yong ([email protected])
18+
* @author Jiang Yong
1919
*/
2020
public abstract class GroupAnagrams {
2121

src/main/java/joshua/leetcode/hashtable/ValidAnagram.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.hashtable;
44

@@ -7,7 +7,7 @@
77
* <p/>
88
* <a href="https://leetcode.com/problems/valid-anagram/">leetcode link</a>
99
*
10-
* @author Jiang Yong ([email protected])
10+
* @author Jiang Yong
1111
*/
1212
public abstract class ValidAnagram {
1313

src/main/java/joshua/leetcode/heap/SlidingWindowMaximum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* <p/>
99
* <a href="https://leetcode.com/problems/sliding-window-maximum/">leetcode link</a>
1010
*
11-
* @author Jiang Yong ([email protected])
11+
* @author Jiang Yong
1212
*/
1313
public abstract class SlidingWindowMaximum {
1414

src/main/java/joshua/leetcode/linkedlist/DeleteNodeInLinkedList.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.linkedlist;
44

@@ -7,7 +7,7 @@
77
* <p/>
88
* <a href="https://leetcode.com/problems/delete-node-in-a-linked-list/">leetcod link</a>
99
*
10-
* @author Jiang Yong ([email protected])
10+
* @author Jiang Yong
1111
*/
1212
public abstract class DeleteNodeInLinkedList {
1313

src/main/java/joshua/leetcode/math/CountPrime.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.math;
44

55
/**
66
* 204. Count Primes<br/>
77
* <a href = "https://leetcode.com/problems/count-primes/">leetcode link</a>
88
*
9-
* @author Jiang Yong ([email protected])
9+
* @author Jiang Yong
1010
*/
1111
public abstract class CountPrime {
1212

src/main/java/joshua/leetcode/math/PowerOfFour.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.math;
44

@@ -7,7 +7,7 @@
77
* <p/>
88
* <a href="https://leetcode.com/problems/power-of-four/">leetcode link</a>
99
*
10-
* @author Jiang Yong ([email protected])
10+
* @author Jiang Yong
1111
*/
1212
public abstract class PowerOfFour {
1313

src/main/java/joshua/leetcode/math/PowerOfThree.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.math;
44

@@ -7,7 +7,7 @@
77
import joshua.leetcode.solutiontag.Recursive;
88

99
/**
10-
* @author Jiang Yong ([email protected])
10+
* @author Jiang Yong
1111
*/
1212
public abstract class PowerOfThree {
1313

src/main/java/joshua/leetcode/math/PowerOfTwo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.math;
44

@@ -7,7 +7,7 @@
77
* <p/>
88
* <a href="https://leetcode.com/problems/power-of-two/">leetcode link</a>
99
*
10-
* @author Jiang Yong ([email protected])
10+
* @author Jiang Yong
1111
*/
1212
public abstract class PowerOfTwo {
1313

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.solutiontag;
44

55
/**
6-
* @author Jiang Yong ([email protected])
6+
* @author Jiang Yong
77
*/
88
public @interface DFS {
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.solutiontag;
44

55
/**
6-
* @author Jiang Yong ([email protected])
6+
* @author Jiang Yong
77
*/
88
public @interface Recursive {
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.solutiontag;
44

55
/**
66
*
77
*
8-
* @author Jiang Yong ([email protected])
8+
* @author Jiang Yong
99
*/
1010
public @interface UnionFind {
1111
}

src/main/java/joshua/leetcode/stack/EvaluateReversePolishNotation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.stack;
44

@@ -12,7 +12,7 @@
1212
* <p/>
1313
* <a href = "https://leetcode.com/problems/evaluate-reverse-polish-notation/">leetcode link</a>
1414
*
15-
* @author Jiang Yong ([email protected])
15+
* @author Jiang Yong
1616
*/
1717
public abstract class EvaluateReversePolishNotation {
1818

src/main/java/joshua/leetcode/strings/ReverseWordsII.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.leetcode.strings;
44

@@ -7,7 +7,7 @@
77
* <p/>
88
* <a href="https://leetcode.com/problems/reverse-words-in-a-string-ii/">leetcode link</a>
99
*
10-
* @author Jiang Yong ([email protected])
10+
* @author Jiang Yong
1111
*/
1212
public abstract class ReverseWordsII {
1313

src/main/java/joshua/oop/elevator/Direction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.oop.elevator;
44

55
/**
6-
* @author Jiang Yong ([email protected])
6+
* @author Jiang Yong
77
*/
88
public enum Direction {
99
UP, DOWN

src/main/java/joshua/oop/elevator/Elevator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.oop.elevator;
44

@@ -7,7 +7,7 @@
77
import java.util.Queue;
88

99
/**
10-
* @author Jiang Yong ([email protected])
10+
* @author Jiang Yong
1111
*/
1212
public class Elevator implements Runnable{
1313

src/main/java/joshua/oop/elevator/Listener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 Baidu Inc. All rights reserved.
1+
22

33
package joshua.oop.elevator;
44

@@ -7,7 +7,7 @@
77
import java.net.Socket;
88

99
/**
10-
* @author Jiang Yong ([email protected])
10+
* @author Jiang Yong
1111
*/
1212
public class Listener implements Runnable {
1313

0 commit comments

Comments
 (0)