Skip to content

Commit 4641328

Browse files
Create find three consecutive integers
1 parent 3d9f199 commit 4641328

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

find three consecutive integers

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
class Solution {
2+
public:
3+
vector<long long> sumOfThree(long long num) {
4+
vector<long long> v;
5+
6+
7+
long long i=(num-3)/3;
8+
if(3*i+3==num){
9+
v.push_back(i);
10+
v.push_back(i+1);
11+
v.push_back(i+2);
12+
return v;
13+
}
14+
return v;
15+
}
16+
};

0 commit comments

Comments
 (0)