|
1 |
| -#[LeetCode](https://leetcode.com/problemset/algorithms/)[](https://travis-ci.org/fishercoder1534/Leetcode)[](LICENSE.md) |
| 1 | +#[LeetCode](https://leetcode.com/problemset/algorithms/)[](https://travis-ci.org/fishercoder1534/Leetcode)[](LICENSE.md) |
2 | 2 |
|
3 | 3 | ##Algorithms
|
4 | 4 | | # | Title | Solutions | Time | Space | Difficulty | Tag | Notes
|
5 | 5 | |-----|----------------|---------------|---------------|---------------|-------------|--------------|-----
|
6 | 6 | |557|[Reverse Words in a String III](https://leetcode.com/problems/reverse-words-in-a-string-iii/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/ReverseWordsinaStringIII.java) | O(n) |O(n) | Easy | String
|
7 | 7 | |556|[Next Greater Element III](https://leetcode.com/problems/next-greater-element-iii/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/NextGreaterElementIII.java) | O(n)|O(1)| Medium | String
|
8 | 8 | |554|[Brick Wall](https://leetcode.com/problems/brick-wall/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/BrickWall.java) | O(n) (n is total number of bricks in the wall) |O(m) (m is width of the wall) | Medium | HashMap
|
| 9 | +|551|[Student Attendance Record I](https://leetcode.com/problems/Student Attendance Record I/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/StudentAttendanceRecordI.java) | O(n)| O(1) | Easy| String |
9 | 10 | |549|[Binary Tree Longest Consecutive Sequence II](https://leetcode.com/problems/binary-tree-longest-consecutive-sequence-ii/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/BinaryTreeLongestConsecutiveSequenceII.java) | O(n) |O(n) | Medium | Tree
|
10 | 11 | |548|[Split Array with Equal Sum](https://leetcode.com/problems/split-array-with-equal-sum/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/SplitArraywithEqualSum.java) | O(n^2) |O(1) | Medium | Array
|
11 | 12 | |547|[Friend Circles](https://leetcode.com/problems/friend-circles/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/FriendCircles.java) | O(n^2) |O(n) | Medium | Union Find
|
|