Update appNew update is available. Click here to update.
About
Student at Sri Krishna College of Engineering and Technology, coimbatore. Wish to get placed in a Top Tech Company. Interested in "Coding" and also in "Web development".
Sri Krishna College of Engineering and Technology 2026
My Stats
EXP gained
yellow-spark
7948
Level
6 (Specialist)
Community stats
Discussions
0
Upvotes
3
Know more
Weekend contest rating
Contest attended
Problems solved
2021 2023
Better than %
Weekend contest rating
Contest attended
Problems solved
2021 2023
Better than %
419
Total problems solved
413
Easy
6
Moderate
0
Hard
0
Ninja
Jan Jan Feb Feb Mar Mar Apr Apr May May Jun Jun Jul Jul Aug Aug Sep Sep Oct Oct Nov Nov Dec Dec

Current streak:

0 days

Longest streak:

43 days

Less

More

Achievements
2
Ronin
Topics
Arrays
Math
1
Sensei
Guided path
Basics of C++
Discussions
SQUARE ROOT OF THE GIVEN NUMBER
General discussion

#include <bits/stdc++.h> 

int squareRoot(int a)

{

    return (int)(sqrt(a));

}

 

profile
SUBALAKSHMI
Published On 29-Oct-2023
20 views
0 replies
1 upvotes
SOLUTION FOR ADDED CHARACTER
General discussion

#include <bits/stdc++.h> 

char findAddedCharacter(string &s, string &t) {

    // Write your code here.

    int s1=t.length();

    for(int i=0;i<s1;i++){

        if(t[i]!=s[i]){

            return t[i];

        }        

    }

}

profile
SUBALAKSHMI
Published On 08-Oct-2023
39 views
0 replies
0 upvotes