Skip to content

Commit

Permalink
Update android-unlock-patterns.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 committed May 23, 2016
1 parent 458d10b commit df3172c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions C++/android-unlock-patterns.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Time: O(9 * 2^9)
// Time: O(9^2 * 2^9)
// Space: O(9 * 2^9)

// DP solution.
Expand Down Expand Up @@ -71,7 +71,7 @@ class Solution {
};


// Time: O(9 * 2^9)
// Time: O(9^2 * 2^9)
// Space: O(9 * 2^9)
// DP solution.
class Solution2 {
Expand Down

0 comments on commit df3172c

Please sign in to comment.