๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.57K subscribers
5.59K photos
3 videos
95 files
10K 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
๐Ÿš€ We're Hiring Freshers at hashtag#Dotsquares!

Are you a recent graduate looking to kickstart your career in the IT industry?

Dotsquares is looking for energetic and passionate Freshers to join our growing team in the following roles:

๐ŸŽฏ Open Positions:
Business Analyst
.NET Developer

๐Ÿ‘ค Who can apply?
๐Ÿ“Œ Technical Graduates with backgrounds such as:
B.Tech / B.E.
BCA / MCA
M.Tech
Other IT-related degrees

๐Ÿง  Skills We Value:
Strong analytical and problem-solving abilities
Basic understanding of software development (for .NET)
Good communication and interpersonal skills
Willingness to learn and grow with the team

๐Ÿ“ Location: Jaipur, Rajasthan
๐ŸŽ“ Experience: 0 - 1 Year
๐Ÿ•’ Employment Type: Full-time

๐Ÿ“ฉ How to Apply?

Fill in your details using the below Google Form:
๐Ÿ‘‰ https://lnkd.in/gTdxBW8P
๐Ÿš€ Weโ€™re Hiring!
Weโ€™re looking for passionate and motivated Software Engineers - Full Stack (L1 & L2) to join our growing tech team!
If you love coding, learning new tech, and building great products, this is for you.
๐Ÿ“Œ Location: Technopark, Trivandrum, Kerala
๐Ÿ’ผ Experience:
๐Ÿ”น L1 โ€“ Freshers / Junior Developers
๐Ÿ“„ Job Description: Software Engineer - I(Full Stack)
https://lnkd.in/gnHHYjyD
๐Ÿ”— Apply via Indeed: Apply Here
https://lnkd.in/gfSHMSz2
๐Ÿš€ We're Hiring!

Position: Associate System Engineer
๐Ÿ“ Location: Indore | ๐ŸŒ™ Shift: Night | ๐Ÿš— Cab Facility: Available for Female Candidates

๐ŸŽ“ Experience: Freshers
Join American Chase and kickstart your tech career! We're looking for passionate, quick learners with strong communication skills.

๐Ÿ“ฉ Apply Now: Send your resume to hansika.dubey@americanchase.com
`cpp
#include <iostream>
#include <string>
#include <vector>
#include <set>
#include <utility>

using namespace std;

string s(string a) {
    int n = a.length();
    set<pair<char, int>> c;
    vector<bool> r(n, false);

    for (int i = 0; i < n; ++i) {
        if (a[i] == '*') {
            if (!c.empty()) {
                auto it = c.begin();
                int j = it->second;
                r[j] = true;
                c.erase(it);
            }
        } else {
            c.insert({a[i], i});
        }
    }

    string x = "";
    for (int i = 0; i < n; ++i) {
        if (a[i] != '*' && !r[i]) {
            x += a[i];
        }
    }

    return x;
}

Start Removal โœ…
โค2
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;

int Solution::findRadius(vector<int> &A, vector<int> &B) {
    sort(A.begin(), A.end());
    sort(B.begin(), B.end());
    int ans = 0;
   
    for (int bld : A) {

        auto it = lower_bound(B.begin(), B.end(), bld);
        int dist = INT_MAX;
        if (it != B.end())
            dist = abs(*it - bld);
        if (it != B.begin())
            dist = min(dist, abs(*(it - 1) - bld));
        ans = max(ans, dist);
    }
    return ans;
}

Wi-Fi Router โœ…
S2: 4xy
S7: 6
S12: 0
Q4: 1/2
S22: (2, 3)
S28: Target/Mean Encoding
S29: TimeSeriesSplit
S38: 15
S43: 2/5
S59: Mode > Median > Mean

ML - 2: The data has a Gaussian distribution
ML - 7: Updating prior beliefs with observed data using Bayes' theorem
ML - 12: The probability distribution over actions given states
ML - 17: Internal covariate shift
ML - 23: Boosting reduces bias, bagging reduces variance
ML - 24: Binary Cross-Entropy
S48: 30/84
S60: 150
S53: 2/3
S68: Prior ร— Likelihood


Amazon Machine Learning Summer Schoolโœ