๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.58K 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
Urgently hiring at ITC Infotech for the below mentioned position.

Position - Fresher to 1 year experience
Skills - Power BI, Python ,GenAI , AI/ML
Experience - 0 to 1 years
Education - BE / B.Tech / ME / M.Tech ( In 10th & 12th marks should be above 85% & in degree CGPA must be more than 9.0)
Location - Kolkata (5 days' Work from Office)
Looking for immediate joiners only.
Interview mode - Face to Face in Kolkata
Number of positions - 2
Looking for candidates currently present in Kolkata so that they can attend the face-to-face interview.
Please share the resumes with proper photograph along with 10th, 12th & Graduation percentages, year of passout mentioned.

JD:-

Job Description:

Require highly motivated Junior Data Scientist with strong analytical skills, good communication abilities, and a solid academic background.

1.Data Handling: Proficient in data collection, cleaning, and preprocessing using Python libraries like Pandas and NumPy.
2.Machine Learning: Hands-on experience in building and deploying models using Scikit-learn, TensorFlow, or PyTorch.
3.AI & Gen AI: Basic understanding of artificial intelligence and generative AI concepts and their practical applications.
4.Data Visualization: Skilled in creating clear and informative visualizations using Matplotlib, Seaborn, or similar tools.
5.Programming: Strong Python programming skills with a focus on writing clean, efficient, and maintainable code.
6.Collaboration & Communication: Excellent communication skills with the ability to explain technical concepts and collaborate across teams.
7.Academic Background: Strong educational foundation in Computer Science, Data Science, Statistics, or a related field.

Interested candidates are requested to share their resumes at soumyadipta.maity@itcinfotech.com.

Here with please mention the following details on the mail body.
Name ( As in passport )
Contact Number
Email ID
Last Academic Qualification
Year of pass out
Total Exp (Years)
Experience in Gen AI, ML , Python -
Present Employer if any
Current Annual CTC (INR)
Expected Annual CTC (INR)
Notice Period
Current location
Willing to attend Face to Face interview in Kolkata (Yes/No)
๐Ÿš€ 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 โœ