Help with Security | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Help with Security

I need help with security problem #include <iostream> #include <deque> using namespace std; int main() { char a[100]; deque<char>d; for(int i=0;i<100;i++){ cin>>a[i]; if(a[i]=='G'||a[i]=='T'||a[i]=='

#x27;){ d.push_back(a[i]); } } for(int i=0;i<d.size();i++){ if(d[i]=='
#x27;){ if(d[i-1]=='T'||d[i+1]=='T'){ cout<<"ALARM"; }else{ cout<<"quiet"; } } } } Test case number 5 and 6 don't work

18th Jul 2021, 2:10 PM
Francesco Famosi
Francesco Famosi - avatar
2 Answers
+ 2
You should get rid of the undefined behaviour in your program. Not only are you potentially reading too many characters and accessing uninitialized characters in the array, you are also accessing the deque out of bounds if the '
#x27; is at the front or the back.
18th Jul 2021, 4:25 PM
Shadow
Shadow - avatar
0
#include <iostream> #include <deque> using namespace std; int main() { char a[100]; deque<char>d; for(int i=0;i<100;i++){ cin>>a[i]; if(a[i]=='G'||a[i]=='T'||a[i]=='
#x27;){ d.push_back(a[i]); } } for(int i=0;i<d.size();i++){ if(d[i]=='
#x27;){ if(i==0){ if(d[i+1]=='T'){ cout<<"ALARM"; }else{ cout<<"quiet"; } }else if(i+1==d.size()){ if(d[i-1]=='T'){ cout<<"ALARM"; }else{ cout<<"quiet"; } }else{ if(d[i-1]=='T' || d[i+1]=='T'){ cout<<"ALARM"; }else{ cout<<"quiet"; } } } } } I modified the code following your advice and now it works, 6 test cases out of 6, thank you very much for your help
19th Jul 2021, 3:02 PM
Francesco Famosi
Francesco Famosi - avatar