๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.63K 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
๐‚๐จ๐ฆ๐ฉ๐š๐ง๐ฒ ๐๐š๐ฆ๐ž: Trellix

๐‘๐จ๐ฅ๐ž: Software Engineer

๐๐š๐ญ๐œ๐ก ๐ž๐ฅ๐ข๐ ๐ข๐›๐ฅ๐ž: 2022 and 2023 grads

๐€๐ฉ๐ฉ๐ฅ๐ฒ: https://trellix.wd1.myworkdayjobs.com/en-US/EnterpriseCareers/job/Software-Engineer_JR0032175
๐‚๐จ๐ฆ๐ฉ๐š๐ง๐ฒ ๐๐š๐ฆ๐ž: GroundTruth

๐‘๐จ๐ฅ๐ž: Software Engineer Intern

๐๐š๐ญ๐œ๐ก ๐ž๐ฅ๐ข๐ ๐ข๐›๐ฅ๐ž: 2023 and 2024 grads
๐’๐ญ๐ข๐ฉ๐ž๐ง๐: 32k - 35k per month

๐€๐ฉ๐ฉ๐ฅ๐ฒ: https://www.groundtruth.com/job/4923253004-2/
Are you a fresher who is Bengaluru based and interested in marketing or sales or AI/ML?

mirrAR is looking for talent like you.

Drop in your email to hr@mirrar.com marking jeevitha.m@mirrar.com in cc

We need immediate joiners. CTC offered would be 3-3.5LPA.
Message to all 2023, 2024 grads.

Do not stop your preparation after getting 1 offer, companies are revoking offers like a joke.

Bcoz once you stopped your preparation journey it will take 2-3 months to get back.

Be in safe side always:)
If you are a Student looking for an internship opportunity Please find below from Career page .

passout year: 2022, 2023, 2024, 2024, 2025, 2026


IBM Hiring SDE Intern( Work from Home)
Qualification Tag: pursuing BE/BTech/BS(CS/IT)/ME/Mtech/MCA
Salary: 30k - 40k per month ( Expected)
Apply now : https://careers.ibm.com/job/18698263/intern-software-engineer-remote/

Microsoft Hiring Research Intern
Qualification Tag: pursuing BE/BTech/BS(CS/IT)/ME/Mtech/MCA
Stipend: 1 lakh per month (Expected)
Apply now : https://jobs.careers.microsoft.com/us/en/job/1582723/Research-Intern

Oracle Hiring intern for multiple Role
Qualification Tag: pursuing BE/BTech/BS(CS/IT)/ME/Mtech/MCA
Salary: 50k per month
Apply now : https://careers.oracle.com/jobs/#en/sites/jobsearch/requisitions/preview/196625

Cisco Hiring Technical Consulting intern
Qualification Tag: pursuing BE/BTech/BS(CS/IT)/ME/Mtech/MCA
Salary: 50k per month ( Expected)
Apply now: https://jobs.cisco.com/jobs/ProjectDetail/Technical-Consulting-Engineer-Intern-India-UHR/1405181
๐‚๐จ๐ฆ๐ฉ๐š๐ง๐ฒ ๐๐š๐ฆ๐ž: Microsoft

๐‘๐จ๐ฅ๐ž: SDE Intern

๐๐š๐ญ๐œ๐ก ๐ž๐ฅ๐ข๐ ๐ข๐›๐ฅ๐ž: 2024 grads

๐€๐ฉ๐ฉ๐ฅ๐ฒ: https://jobs.careers.microsoft.com/us/en/job/1577325/Software-Engineering---Internship-Opportunities?jobsource=linkedin
๐Ÿ‘1
int solution(vector<int> A){
    int n = A.size() >> 1;
    vector<int> dp(n, 1);
    for(int i=1; i<n; i++)
        for(int j=i-1; j>=0; j--)
            if(A[i<<1] == A[j<<1|1])
                dp[j] = max(dp[j], dp[i] + 1);
    return n - *max_element(dp.begin(), dp.end());
}


Microsoft Domioes Solution
C++โœ…
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define F first
#define S second
#define int long long
#define ll long long
#define ull unsigned long long
#define ld long double
#define pii pair<int,int>
#define vi vector<int>
#define vii vector<pii>
#define vc vector
#define L cout<<'\n';
#define E cerr<<'\n';
#define all(x) x.begin(),x.end()
#define rep(i,a,b) for (int i=a; i<b; ++i)
#define rev(i,a,b) for (int i=a-1; i>=b; --i)
#define IOS ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define setpr(x) cout<<setprecision(x)<<fixed
#define sz size()
#define seea(a,x,y) for(int i=x;i<y;i++){cin>>a[i];}
#define seev(v,n) for(int i=0;i<n;i++){int x; cin>>x; v.push_back(x);}
#define sees(s,n) for(int i=0;i<n;i++){int x; cin>>x; s.insert(x);}
const ll inf = INT_MAX;
const ld ep = 0.0000001;
const ld pi = acos(-1.0);
const ll mod = 1000000007;
int dp[1001][1001];
bool rem(ll a , ll b){return a%b;}
void init_code(){
#ifndef ONLINE_JUDGE
  freopen("input.txt", "r", stdin);
  freopen("output.txt", "w", stdout);
#endif
}
ll add(ll x, ll y){
   return (x+y)%mod;
}
ll multi(ll x , ll y){
   return (x*y)%mod;
}
ll power(ll x , ll y){
   x %= mod;
   ll res = 1;
   while(y > 0){
      if(y&1)res=multi(res,x);
      y=y>>1;
      x = multi(x,x);
   }
   return res;
}

ll inverse(ll n,ll p){
   return power(n,p-2);
}
int helper(unordered_map<int,vector<int>>&mp, vi &v,int ind,int prev){
   if(ind==v.size()) return 1;
   // cout<<ans
   if(dp[ind][prev]!=-1) return dp[ind][prev];
   int ans=0;
   for(auto it:mp[v[ind]]){
     if(it>prev)ans+=helper(mp,v,ind+1,it);
     ans%=mod;
   }
   return dp[ind][prev]=ans;
}
void solve(){
   int n;
   cin>>n;
   vi v(n);
   rep(i,0,n) cin>>v[i];
   unordered_map<int,vector<int>>mp;
   for(int i=1;i<=1000;i++){
         string s=to_string(i);
         int val=0;
         for(auto it:s){
            val+=it-'0';
         }
         mp[val].pb(i);
   }
   // vector<vector<int>>dp(1001,vector<int>(1001,-1));
   memset(dp,-1,sizeof(dp));
   cout<<helper(mp,v,0,0)<<endl;
}


signed main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
init_code();
   int t;cin >> t;while(t--)
   solve();
   return 0;
}

Google โœ…
(C++)
int Find(vector<int> &v,int n){
  
     vector<int> bit(32,0);
    
     for(int i=0;i<n;i++)
         for(int j=0;j<32;j++)
             if( (v[i]>>j)&1 )
                  bit[j]++;
                 
                 
                 
     long long ans=0;
    
     int M=1e9+7;
     for(int i=0;i<n/2 ;i++){
        
         long long val=0;
        
         for(int j=0;j<32;j++){
             if(bit[j]){
                 val=(val | (1<<j));
                 bit[j]--;
             }
         }
           
           
            ans+=(val*val);
            ans%=M;
        
     }
    
     return ans;
       
    
}

Sneaker shoppingโœ…
Sprinklr