diff options
author | crupest <crupest@outlook.com> | 2021-02-28 17:52:47 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-02-28 17:52:47 +0800 |
commit | c3a1dfd2e47a6412861f27c6f1925da4f061f46d (patch) | |
tree | 62c8e2914155d940b15e847845ea0f7a360d9736 /works | |
parent | 641ead1acda087826b52f35884c19e9cf52a9971 (diff) | |
download | crupest-c3a1dfd2e47a6412861f27c6f1925da4f061f46d.tar.gz crupest-c3a1dfd2e47a6412861f27c6f1925da4f061f46d.tar.bz2 crupest-c3a1dfd2e47a6412861f27c6f1925da4f061f46d.zip |
import(solutions): Add problem 896.
Diffstat (limited to 'works')
-rw-r--r-- | works/solutions/leetcode/cpp/896.cpp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/works/solutions/leetcode/cpp/896.cpp b/works/solutions/leetcode/cpp/896.cpp new file mode 100644 index 0000000..25bd528 --- /dev/null +++ b/works/solutions/leetcode/cpp/896.cpp @@ -0,0 +1,35 @@ +#include <vector>
+
+using std::vector;
+
+enum Order { Ascend, Descend, Unknown };
+
+class Solution {
+public:
+ bool isMonotonic(vector<int> &A) {
+ Order order = Unknown;
+
+ int count = A.size();
+ for (int i = 1; i < count; i++) {
+ int last = A[i - 1];
+ int current = A[i];
+ if (order == Unknown) {
+ if (current > last) {
+ order = Ascend;
+ } else if (current < last) {
+ order = Descend;
+ }
+ } else if (order == Ascend) {
+ if (last > current) {
+ return false;
+ }
+ } else {
+ if (last < current) {
+ return false;
+ }
+ }
+ }
+
+ return true;
+ }
+};
|