Run Time Error..

Why i am having run time error, when i submit the code of may challenge code : SSTONE.
After i change the variable name ,this problem still occurring…

run time error are cant be found easily go through your code step by step and keep patience

there are some special case in which generally run time error occurs ,and this has nothing to with variable name.

1.may be you are using too much memory inside any function.

solution- declare that array in global scope(outside any function).

2.your loop index may be going out of array scope.

3.may be you are going in infinite loop for some special case .

please check this constraint for different test cases may be you found error in your code…

happy coding!!!