๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.62K subscribers
5.59K photos
3 videos
95 files
10.2K 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
public static String swapString(String inputString) {
        char[] charArray = inputString.toCharArray();
        int i = 0;
        int j = inputString.length() - 1;
       
        while (i < j) {
            char temp = charArray[i];
            charArray[i] = charArray[j];
            charArray[j] = temp;
             i++;
            j--;
        }
       
        return new String(charArray);
    }

Program to Swap words in string โœ…
Company: UM IT Services & Consulting
Role: intern data analyst 
Exp: Freshers 
Apply Now:-https://www.linkedin.com/jobs/view/3822189328

Company:  MedTourEasy
Role:  Data Analyst Trainee
Exp: Fresher
Apply Now:- https://www.linkedin.com/jobs/view/3822187393

Company: American Express
Role: Analyst-Data Science
Exp:  0-30 months
Apply Now:- https://www.linkedin.com/jobs/view/3821160095

Company - Toolyt
Role- Data Analyst at Toolyt
Exp: 0 to 1 year
Apply now :- https://www.linkedin.com/jobs/view/3826552573

Company -  OneBanc
Role- Data - Data Scientist
Experience-0 to 1 year
Apply now:-  https://www.linkedin.com/jobs/view/3822184766

Company - eClerx
Role- Analyst
Experience- Freshers
Apply now:- https://www.linkedin.com/jobs/view/3765235767

Company - ITAI
Role- Machine Learning Engineer
Experience- 0 to 1 year
Apply now- https://www.linkedin.com/jobs/view/3822175912
Xceedance is hiring!!
Policy Service Analyst for Night shift
Requirements:
0-1 year of experience in policy management, endorsement, renewals for property and casualty insurance
Willing to work in night shift
Non IT graduates

Interested and relevant candidates may share their resumes at shivani.srivastava@xceedance.com with the subject line as โ€œAnalyst- night shiftโ€.
#include <iostream>
#include <vector>
#include <unordered_map>
#include <sstream>

using namespace std;

vector<string> computeParameterValue(vector<vector<string>>& sources) {
    unordered_map<string, string> final_parameters;
    vector<string> order_of_keys;

    for (auto& source : sources) {
        for (auto& pair : source) {
            stringstream ss(pair);
            string key, value;
            getline(ss, key, ':');
            getline(ss, value, ':');

            if (final_parameters.find(key) == final_parameters.end()) {
                order_of_keys.push_back(key);
            }
            final_parameters[key] = value;
        }
    }

    vector<string> final_parameters_list;
    for (auto& key : order_of_keys) {
        final_parameters_list.push_back(final_parameters[key]);
    }

    return final_parameters_list;
}

Stock Analysis โœ…
static int getAnagramPeriod(String input_str) {
        int n = input_str.length();
       
        for (int period = 1; period <= n; period++) {
            if (n % period == 0) {
                String subString = input_str.substring(0, period);
                boolean valid = true;

                for (int i = 0; i < n; i += period) {
                    if (!isAnagram(subString, input_str.substring(i, i + period))) {
                        valid = false;
                        break;
                    }
                }

                if (valid) {
                    return period;
                }
            }
        }

        return -1;
    }

    static boolean isAnagram(String str1, String str2) {
        char[] charArray1 = str1.toCharArray();
        char[] charArray2 = str2.toCharArray();
        Arrays.sort(charArray1);
        Arrays.sort(charArray2);
        return Arrays.equals(charArray1, charArray2);
    }

Anagram Period โœ…
#include <bits/stdc++.h>
using namespace std;

int getMinimumMoves(string word) {
    unordered_map<char, int> freq;
    int moves = 0;

    for (char c : word) {
        freq[c]++;
    }

    for (auto& entry : freq) {
        moves += entry.second / 2;
    }

    return moves;
}

Minimum length word โœ…
๐Ÿ‘2