Compare commits

..

No commits in common. "98eebfc26c59ddfef730f6dd61b8091a396a24a9" and "4feece3edb73cd9ca64d158be27bc48a7a515b7e" have entirely different histories.

View File

@ -69,7 +69,6 @@ void F1(int n) {
F1(n - 3);
F1(n - 4);
}
}
void F2(int n) {
@ -78,7 +77,6 @@ void F2(int n) {
F2(n + 1);
F2(n + 3);
}
}
void G3(int n);