๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.59K subscribers
5.59K photos
3 videos
95 files
10.1K links
๐ŸšฉMain Group - @SuperExams
๐Ÿ“Job Updates - @FresherEarth

๐Ÿ”ฐAuthentic Coding Solutions(with Outputs)
โš ๏ธDaily Job Updates
โš ๏ธHackathon Updates & Solutions

Buy ads: https://telega.io/c/cs_algo
Download Telegram
Hiringalert !
Job openings for Administration Executive profile,

MBA Fresher with specialisation in Finance and Marketing

Location -Greater Noida (WFO)

Skills- Tally, Advance Excel etc.

Interested candidates can share cv on career@pharmazz.com
๐Ÿ‘1
Genpact is seeking MBA freshers for the role of Recruitment Consultant in Noida.

This is a wonderful opportunity for those who want to start their career in the field of recruitment.
The role requires working from the office for 5 days a week.

If you're interested, kindly send your updated resume to faaiza.fatima@genpact.com or drop a comment/message.

We look forward to hearing from you!
๐Ÿ‘1
List<Character> duplicates = new ArrayList<>();
        for (int i = 0; i < inputchar.size(); i++) {
            for (int j = i + 1; j < inputchar.size(); j++) {
                if (inputchar.get(i).equals(inputchar.get(j)) && !duplicates.contains(inputchar.get(i))) {
                    duplicates.add(inputchar.get(i));
                    break;
                }
            }
        }
        return duplicates;
    }

Program to find duplicate in element Array โœ…
IBM
int sumA = 0;
        int sumB = 0;

        for (int i = 0; i < a.length; i++) {
            sumA += a[i];
            sumB += b[i];
        }
        int count = 0;
        int tempA = a[0];
        int tempB = b[0];

        for (int i = 1; i < a.length; i++) {
            if (i != 1 && tempA == tempB && 2 * tempA == sumA && 2 * tempB == sumB) {
                count++;
            }
            tempA += a[i];
            tempB += b[i];
        }
        return count;

Bentley โœ…
#include <iostream>
#include <vector>

using namespace std;

void dfs(vector<vector<char>>& plan, int row, int col) {
    int R = plan.size();
    int C = plan[0].size();

    if (row < 0 row >= R col < 0 col >= C plan[row][col] != '*') {
        return;
    }

    plan[row][col] = '.';
    dfs(plan, row + 1, col);
    dfs(plan, row - 1, col);
    dfs(plan, row, col + 1);
    dfs(plan, row, col - 1);
}

int solution(vector<vector<char>>& plan) {
    int R = plan.size();
    int C = plan[0].size();
    int runs = 0;

    for (int i = 0; i < R; ++i) {
        for (int j = 0; j < C; ++j) {
            if (plan[i][j] == '*') {
                dfs(plan, i, j);
                ++runs;
            }
        }
    }

    return runs;
}

Bentley โœ…
#include <iostream>
#include <vector>
#include <string>
#include <sstream>

using namespace std;

vector<int> convertArraytoVector(size_t sz, int *arr) {
    int N = sz;
    vector<int> v;
    for (int i = 0; i < N; i++)
        v.push_back(arr[i]);
    return v;
}

int maxProfit(vector<int>& prices) {
    long long int res = 0;
    prices.insert(prices.begin(), 0);
    for(int i = 1; i < prices.size(); i++) {
        res += max(prices[i] - prices[i - 1], 0);
    }
    res = res % 1000000000;
    return res;
}

Bentley โœ…
Fresher's Hiring at Unijob Solution for Reputed Client at Pune

Exp. Level: 0 to 2 year
Qualification: BE - IT/Comp, B.tech, MCA, MSC, BSC, BCA - 2020 to 2023 passout.

Location: Hadapsar, Pune
Package: 3.5 to 4.5 LPA

Skills:
1. html, css, javascript,react
2. Node
3. Java

Excellent communication skills required.

Interested candidates can share cv at saurabh@unijobsolution.com