Given an array A , a subsequence of A is said to be good subsequence, if it has at least one pair of consecutive elements such that their absolute difference is less than equal to 1.
Formally, if the subsequence B has m elements, then it is a good subsequence if there exists at least one index i (2≤i≤m) such that abs(Bi−Bi−1)≤1.
You have to find the total number of good subsequences of array A modulo 109+7.
Obviously, a good subsequence has to have at least 2 elements in it.
For example if sequence has 3 elements [3, 4, 5], subsequence [3, 4], [4, 5] and [3, 4, 5] are good subsequnces. So our answer will be 3 in this case.
Input Format
The first line contains a single integer N (2≤n≤105), denoting the number of elements in A
The second line contains N integers A1,A2,…,An (1≤Ai≤105).
Output Format
Output the total number of good subsequences of the array A modulo 109+7
[1, 2], [1, 2, 1], [1, 2, 1, 9], etc. are some of the good subsequences. Total 12 are there in the given sample.