Friday, January 1, 2021

Vector-Erase | HackerRank | C++ | Solution



Problem : https://www.hackerrank.com/challenges/vector-erase/problem

Solution : 

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;


int main() {
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */ 
    int n ;
    cin>>n;
    vector<int>  v;
    int temp;
    for(int i =0;i<n;i++){
        cin>>temp;
        v.push_back(temp);
    }
    // 1 4 6 2 8 9
    
    int pos1; // 2
    cin>>pos1;
    
    v.erase(v.begin()+pos1-1);
    
    // 1 6 2 8 9
    
    int a, b;  // a = 2 and b = 4
    cin>>a>>b;
    
    
    v.erase(v.begin()+a-1,v.begin()+b-1);
    
    
    // 1 8 9
    
    
    cout<<v.size()<<endl;
    for(int i:v){
        cout<<i<<" ";
    }
    
    
}

Vector-Sort | STL | HackerRank | C++ | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/vector-sort/problem

Solution : 

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;


int main() {
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */ 
    vector<int>  v;
    int n;
    cin>>n;
    int temp;
    for(int i =0;i<n;i++){
        cin>>temp;
        v.push_back(temp);
    }
    
    sort(v.begin(),v.end());
    for(int i=0;i<n;i++){
        cout<<v[i]<<" ";
    }
    return 0;
}

Box It! | HackerRank | C++ | Solution



Problem : https://www.hackerrank.com/challenges/box-it/problem

Solution : 

#include<bits/stdc++.h>

using namespace std;
//Implement the class Box  
class Box{
    private:
        int l,b,h;
    public :
        Box():l(0),b(0),h(0){
        }
        Box(int l , int b , int h){
            this->l = l;
            this->b = b;
            this->h = h;
        }
        Box(Box & obj){
            l = obj.l;
            b = obj.b;
            h = obj.h;   
        }
        
        int getLength(){
            return l;
        }
        int getBreadth(){
            return b;
        }
        int getHeight(){
            return h;
        }
        long long CalculateVolume(){
            return long(l)*long(b)*long(h);
        }
        
        bool operator<(Box& b){
            if (this->l < b.l){ return true;}
            else if (this->b < b.b && this->l == b.l) { return true;}
            else if (this->h < b.h && this->b ==b.b && this->l == b.l){return true;}
            return false;
        }
        friend ostream& operator<<(ostream& out, Box& B){
            out << B.l <<" "<<B.b<<" "<<B.h;
            return out;
        }
            
};
//l,b,h are integers representing the dimensions of the box

// The class should have the following functions : 

// Constructors: 
// Box();
// Box(int,int,int);
// Box(Box);


// int getLength(); // Return box's length
// int getBreadth (); // Return box's breadth
// int getHeight ();  //Return box's height
// long long CalculateVolume(); // Return the volume of the box

//Overload operator < as specified
//bool operator<(Box& b)


//Overload operator << as specified
//ostream& operator<<(ostream& out, Box& B)




void check2()
{
    int n;
    cin>>n;
    Box temp;
    for(int i=0;i<n;i++)
    {
        int type;
        cin>>type;
        if(type ==1)
        {
            cout<<temp<<endl;
        }
        if(type == 2)
        {
            int l,b,h;
            cin>>l>>b>>h;
            Box NewBox(l,b,h);
            temp=NewBox;
            cout<<temp<<endl;
        }
        if(type==3)
        {
            int l,b,h;
            cin>>l>>b>>h;
            Box NewBox(l,b,h);
            if(NewBox<temp)
            {
                cout<<"Lesser\n";
            }
            else
            {
                cout<<"Greater\n";
            }
        }
        if(type==4)
        {
            cout<<temp.CalculateVolume()<<endl;
        }
        if(type==5)
        {
            Box NewBox(temp);
            cout<<NewBox<<endl;
        }

    }
}

int main()
{
    check2();
}

Classes and Objects | HackerRank | c++ | Solution | color the code



Problem : https://www.hackerrank.com/challenges/classes-objects/problem

Solution : 

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <cassert>
using namespace std;

// Write your Student class here

#include<numeric>
// Write your Student class here

class Student{
    private:
        int marks[5];
    public:
        void input(){
            for(int i  =0 ;i<5;i++){
                cin>>marks[i];
            }
        }
        
        int calculateTotalScore(){
            int total = 0;
            return accumulate(marks,marks+5,total);
        } 
};

int main() {
    int n; // number of students
    cin >> n;
    Student *s = new Student[n]; // an array of n students
    
    for(int i = 0; i < n; i++){
        s[i].input();
    }

    // calculate kristen's score
    int kristen_score = s[0].calculateTotalScore();

    // determine how many students scored higher than kristen
    int count = 0
    for(int i = 1; i < n; i++){
        int total = s[i].calculateTotalScore();
        if(total > kristen_score){
            count++;
        }
    }

    // print result
    cout << count;
    
    return 0;
}

Class | HackerRank | C++ | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/c-tutorial-class/problem

Solution : 

#include <iostream>
#include <sstream>
using namespace std;

/*
Enter code for class Student here.
Read statement for specification.
*/

class Student{
private:
    int age;
    string first_name;
    string last_name;
    int standard;
public : 
    void set_age(int age){
        this->age  = age;
    }
    void set_standard(int standard){
        this->standard  = standard;
    }
    void set_first_name(string first_name){
        this->first_name = first_name;
    }
    void set_last_name(string last_name){
        this->last_name = last_name;
    }
    
    int get_age(){
        return age;
    }
    
    string get_first_name(){
        return first_name;
    }
    
    string get_last_name(){
        return last_name;
    }
    int get_standard(){
        return standard;
    }
    
    string to_string(){
        string str;
        stringstream s;
        s<<age<<","<<first_name<<","<<last_name<<","<<standard;
        s>>str;
        return str;
    }
    
    
};

int main() {
    int age, standard;
    string first_name, last_name;
    
    cin >> age >> first_name >> last_name >> standard;
    
    Student st;
    st.set_age(age);
    st.set_standard(standard);
    st.set_first_name(first_name);
    st.set_last_name(last_name);
    
    cout << st.get_age() << "\n";
    cout << st.get_last_name() << ", " << st.get_first_name() << "\n";
    cout << st.get_standard() << "\n";
    cout << "\n";
    cout << st.to_string();
    
    return 0;

Structs | HackerRank | C++ | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/c-tutorial-struct/problem

Solution :

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;

/*
    add code for struct here.
*/

struct Student{
int age;
string first_name;
string last_name;
int standard;    
};

int main() {
    Student st;
    
    cin >> st.age >> st.first_name >> st.last_name >> st.standard;
    cout << st.age << " " << st.first_name << " " << st.last_name << " " << st.standard;
    
    return 0;
}

Strings | HackerRank | C++ | Solution



Problem : https://www.hackerrank.com/challenges/c-tutorial-strings/problem

Solution :

Conditional Statements | HackerRank | C++ | Solution | color the code



Problem : https://www.hackerrank.com/challenges/c-tutorial-conditional-if-else/problem

Solution : 

#include <bits/stdc++.h>


using namespace std;



int main()
{
    int n;
    cin >> n;
    cin.ignore(numeric_limits<streamsize>::max(), '\n');

    // Write Your Code Here
    if(n == 1){
        cout<<"one";
    }else if(n == 2){
        cout<<"two";
    }else if(n == 3){
        cout<<"three";
    }else if(n == 4){
        cout<<"four";
    }else if(n == 5){
        cout<<"five";
    }else if(n == 6){
        cout<<"six";
    }else if(n == 7){
        cout<<"seven";
    }else if(n == 8){
        cout<<"eight";
    }else if(n == 9){
        cout<<"nine";
    }else{
        cout<<"Greater than 9";
    }
    
    return 0;
}

Thursday, December 31, 2020

Basic Data Types | HackerRank | Solution | C++



Problem : https://www.hackerrank.com/challenges/c-tutorial-basic-data-types/problem

Solution : 

#include <iostream>

#include <cstdio>
using namespace std;

int main() {
    // Complete the code.
    int a;
    float b;
    char c;
    double d;
    long l;
    scanf("%d %ld %c %f %lf",&a ,&l,&c,&b,&d);
    printf("%d\n%ld\n%c\n%0.3f\n%.9lf",a,l,c,b,d);
    return 0;
}

Input and Output | Hackrrank | C++ | Solution



Problem : https://www.hackerrank.com/challenges/cpp-input-and-output/problem

Solution : #include <cmath>

#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;


int main() {
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */   
    int a , b , c;
    cin>>a>>b>>c;
    int sum = 0;
    sum = a + b + c;
    cout<<sum;
    return 0;
}

Say "Hello, World!" With C++ | Hackerrank | C++ | Solution



Problem : https://www.hackerrank.com/challenges/cpp-hello-world/problem

Solution : 


1 - #include <iostream>

#include <cstdio>
using namespace std;

int main() {
    printf("Hello, World!");
    return 0;
}




2 - #include <iostream>
#include <cstdio>
using namespace std;

int main() {
    char str[] = "Hello, World!";
    printf("%s",str);
    return 0;
}


3 - #include <iostream>
#include <cstdio>
using namespace std;

int main() {
    cout<<"Hello, World!";
    return 0;
}


Wednesday, December 30, 2020

Java If-Else | HackerRank | Java | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-if-else/problem

Solution : import java.io.*;

import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;

public class Solution {



    private static final Scanner scanner = new Scanner(System.in);

    public static void main(String[] args) {
        int N = scanner.nextInt();
        scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
        if((N&1) == 1){
            System.out.println("Weird");
        }
        else if(N>=2 && N<=5){
            System.out.println("Not Weird");
        }
        else if(N>=6 && N <=20){
            System.out.println("Weird");
        }
        else if( N > 20){
            System.out.println("Not Weird");
        }
        scanner.close();
        
      
    }
}

Java Stdin and Stdout I HackerRank | JAVA | Solution | Easy | Color The Code



Problem : https://www.hackerrank.com/challenges/java-stdin-and-stdout-1/problem

Solution : import java.util.*;


public class Solution {

    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int a = scan.nextInt();
        // Complete this line
        int b = scan.nextInt();
        // Complete this line
        int c = scan.nextInt();
        
        System.out.println(a);
        // Complete this line
        System.out.println(b);
        // Complete this line
        System.out.println(c);
        
        scan.close();
    }
}