๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.52K subscribers
5.56K photos
3 videos
95 files
9.67K 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
๐ŸšจJob Openings For Fresher ๐Ÿšจ

Company- UM IT Services & Consulting
Role- Data Analyst Inten
Experience- Fresher
Apply now- https://www.linkedin.com/jobs/view/3782889801

Company- Maklab Innovations
Role- Data Aanalyst Intern
Experience- Fresher
Apply now- https://in.indeed.com/rc/clk?jk=c55d268633001d1d&bb=dHav2NW0cKIeKW2EM8CS4XnwMQ-Y1W3ll7L4B03_ji4Dz1aTuoNlDrc0FOt4Vl5XZVmYnelNI7Ba9BfEQG_QG-qTvejRBpUeV6t70y0fCFg%3D&xkcb=SoCi67M3H7XS_jgHvj0LbzkdCdPP&fccid=6aa1631fab5fb1a5&cmp=Maklabinnovations&ti=Data+Analyst&vjs=3

Company- Nerd Geek Lab
Role- Data Science Intern
Experience- Fresher
Apply now- https://in.indeed.com/rc/clk?jk=5e1fefdcfe5d825f&bb=KNSnbioNYn-Ls5lU6RCeHilb8veXc1LP7TS-cdXtRh2K25Kj1DxfE3Df4Gxp8gcpc_3bE7bTQvjgWuy4J9HIFkwriYxkLnpOQ1pxi1dd9Oc%3D&xkcb=SoAc67M3H7XgLwAHvj0LbzkdCdPP&fccid=12a671d50691b41e&cmp=Nerd-Geek-Lab&ti=Data+Science+Intern&vjs=3

Company- Instrovate Technologies
Role- Data Science & Data Engineering Intern
Experience- Fresher
Apply now- https://in.indeed.com/rc/clk?jk=c2340fb10dd84dff&bb=KNSnbioNYn-Ls5lU6RCeHhJezhySHLcsKsQE5DlJmYoB2stz_JudVi-8iOBwKCtbxXIwwW-6tgNA1ZUMtD6v48ZPoJUJi3PXNTdup6LBl8o%3D&xkcb=SoCB67M3H7XgLwAHvj0IbzkdCdPP&fccid=f4993ee162547167&cmp=Instrovate-Technologies&ti=Data+Science+Intern&vjs=3

Company- Career Skills Education & Research Foundation
Role- Data Science Intern
Experience- Fresher
Apply now- https://in.indeed.com/rc/clk?jk=a058b66b2bf3fe4d&bb=KNSnbioNYn-Ls5lU6RCeHudlUhPw5uZ0dHa0fWj-9VkfmUGk6bnt5C9y9fASq5uQU0X6OfMiKqVlzIgWlCS6aFNQjFVjfgQ2-Bp_x6rD0jc%3D&xkcb=SoAP67M3H7XgLwAHvj0PbzkdCdPP&fccid=714642cfd0aa9457&cmp=Career-Skills-Education-%2526-Research-Foundation&ti=Data+Science+Intern&vjs=3

Company- Wahy Lab IT Solutions
Role- Data Science Intern
Experience- Fresher
Apply now- https://in.indeed.com/rc/clk?jk=5a73aed598cbb713&bb=KNSnbioNYn-Ls5lU6RCeHi6jj8Zz_JaIDguUdNoHOPDOhTXZr38HRwNx1i8Mql-YcvJDqgl0h-bohjcWQLK0neA12aSFGFzNsNj6ECY_G8Q%3D&xkcb=SoAm67M3H7XgLwAHvj0NbzkdCdPP&fccid=ae6f3ff054f30b83&cmp=Wahy-Lab-IT-Solutions&ti=Data+Science+Intern&vjs=3

Company- Facctum
Role- Data Analyst
Experience- Fresher
Apply now- https://www.naukri.com/job-listings-data-analyst-facctum-it-solutions-india-private-limited-bangalore-bengaluru-0-to-2-years-131223501703?utmcampaign=androidjd&utmsource=share&src=sharedjd

Company- Sea And Beyond
Role- Data Analyst
Experience- Fresher
Apply now- https://www.naukri.com/job-listings-data-analyst-sea-and-beyond-mumbai-0-to-2-years-071223500159?utmcampaign=androidjd&utmsource=share&src=sharedjd

Company- Anurag Electronic Gujarat
Role- Data Scientist
Experience- Fresher
Apply now- https://www.naukri.com/job-listings-data-scientist-phd-only-anurag-electronic-gujarat-mumbai-0-to-2-years-010421006391?utmcampaign=androidjd&utmsource=share&src=sharedjd

Company- AMERICAN EXPRESS
Role- Analyst- Data Science
Experience- Fresher
Apply now- https://www.naukri.com/job-listings-analyst-data-science-american-express-company-gurgaon-gurugram-0-to-3-years-151223502779?utmcampaign=androidjd&utmsource=share&src=sharedjd
#include <iostream>
#include <unordered_set>

std::string dfs(int pos, int steps, std::unordered_set<int>& visited, int n) {
    if (visited.count(pos)) return "NO";
    visited.insert(pos);
    if (steps == n) return "YES";
    int next_pos = (pos + steps) % n;
    return dfs(next_pos, steps + 1, visited, n);
}

std::string solve(int N) {
    auto helper = & -> std::string {
        std::unordered_set<int> visited;
        return dfs(start_pos, 1, visited, N);
    };

    for (int start_pos = 0; start_pos < N; ++start_pos) {
        std::string result = helper(start_pos);
        if (result == "YES") return result;
    }

    return "NO";
}

int main() {
    int N;
    std::cin >> N;

    std::string result = solve(N);

    std::cout << result << std::endl;

    return 0;
}
๐Ÿš€Opportunity for Freshers : Internship at Terabyte Innovations! ๐Ÿš€

Are you passionate about software development and eager to kick-start your career as a Software Developer? Look no further! Terabyte Innovations is thrilled to announce a 6-month Software Developer Internship opportunity (Jan - Jun) for talented individuals who are ready to embark on a journey of innovation and learning.

Positions:-

SDE Frontend Intern
SDE Backend Intern
SDE Fullstack Intern

Duration:- 6 months (Jan - Jun)
Eligibility Criteria:-CGPA > 7.0
Work Location:-Remote

At Terabyte Innovations, we believe in nurturing the next generation of tech talent, and this internship is designed to provide hands-on experience in a dynamic and collaborative environment. If you're a student with a strong academic record (CGPA > 7.0) and a passion for programming, we want to hear from you!

How to Apply:-
Interested candidates, please comment below or reach out to us via email at
recruiting@terabyteinnovations.com with your resume. We look forward to connecting with bright, enthusiastic individuals who are ready to contribute to our innovative projects.
string matrixbit(string num)
{
string ans ="",s="";
for(int i=0;i<(int)num.size()-1;i++)
{
  if((num[i]-'0')%2==(num[i+1]-'0')%2)
  s+=num[i];
  else
  {
   s+=num[i];
   sort(s.rbegin(),s.rend());
   ans+=s;
   s="";
  }
}
s+=num[(int)num.size()-1];
sort(s.rbegin(),s.rend());
   ans+=s;
return ans;
}
def convert_to_snaky_pattern(s, numRows):
    if numRows == 1 or numRows >= len(s):
        return s

    result = ''
    cycle_length = 2 * numRows - 2

    for i in range(numRows):
        for j in range(i, len(s), cycle_length):
            result += s[j]
            if i != 0 and i != numRows - 1:
                second_j = j + cycle_length - 2 * i
                if second_j < len(s):
                    result += s[second_j]

    return result

Snake pattern โœ