๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
๐Ÿ“ŒVIBS Infosol is Hiring for multiple positions in Technical department:

1) Network Security Engineer - L1 (Mumbai, Indore): 1-3 Years
2) Trainee Engineer - Network Security (Indore): 0-1 Year

Grow and enhance your skills in multiple technologies such as Firewalls, Load balancers, Proxy, Endpoint security solutions, Routers, Switches, VPN, and many more.

Interested candidates can share their CV on muskan@vibsinfosol.com.
โค1
Every time a fresher or intern opening comes at Microsoft, I don't share it directly but texts the recruiter to know whether anyone can apply or not.


When they give me a green flag I share it here.

There's no point in sharing random jobs which is not meant for every, it only brings disgrace to your and my life.
โค12๐Ÿ‘7
long long mpow(long long a, long long b) {
  long long res = 1;
  while (b) {
    if (b & 1)res = res * a;
    a = a * a;
    b /= 2;
  }
  return res;
}

int solve(vector<int>arr, int x, int y)
{

  int n = arr.size();
  sort(arr.begin(), arr.end(), greater<int>());
  long long tot = 0;
  for (long long i = 0; i < (1 << n); ++i)
  {
    long long ext = 0;
    long long res = 0;
    for (long long j = 0; j < n; ++j)
    {
      if ((i & (1 << j))) {
        res += (arr[j] * mpow(2, ext));

        ext++;
      }
    }
    if (res <= x) {
      long long fres = 0;
      for (long long j = 0; j < n; ++j)
      {
        if ((i & (1 << j))) {
          fres += (arr[j] * mpow(2, y));

        }
      }
      tot = max(tot, fres);
    }

  }
  return tot;
}

Ron's real estate
Tata Mg
#include <iostream>
#include <vector>
using namespace std;
void countFormulas(int N, int start, vector<int>& current, int& count) {
    if (N == 0) {
        count++;
        return;
    }
    for (int i = start; i <= 26; i++) {
        int mass = i;
        if (mass > N) {
            break;
        }
        countFormulas(N - mass, i + 1, current, count);
        if (N >= 2 * mass) {
            countFormulas(N - 2 * mass, i + 1, current, count);
        }
    }
}
int getChemicalFormulaCount(int N) {
    int count = 0;
    vector<int> current;
    countFormulas(N, 1, current, count);
    return count;
}


Chemical formula โœ…
Tata Mg
๐Ÿ‘2
๐Ÿ“ŒAscendeum is hiring for Assistant Frontend Engineer - Remote
Experience: 0 - 1 year's
Expected Salary: 10-20 LPA
Apply here:
https://forms.teamlink.com/60

๐Ÿ“ŒPinnacle Infotech is hiring for Software Engineer
Experience: 0 - 1 year's
Expected Salary: 5-8 LPA
Apply here:
https://www.linkedin.com/jobs/view/4067402858/?alternateChannel=search

๐Ÿ“ŒSingleStore is hiring for Softwar Engineer (C/C++)
Experience: 0 - 1 year's
Expected Salary: 20-30 LPA
Apply here:
https://boards.greenhouse.io/singlestore/jobs/6374262

๐Ÿ“ŒFirst Advantage is hiring for Associate Software Engineer
Experience: 0 - 1 year's
Expected Salary: 3-6 LPA
Apply here:
https://www.linkedin.com/jobs/view/4022036524/?alternateChannel=search-engineer
๐Ÿ“ŒAminurmus Technology is hiring

Multiple Roles:
- SDE ( Intern/Fulltime)
- Reactjs Developer ( Intern/Fulltime)
- Dot net Developer (Intern/ Fulltime)
- Mern Stack Developer (Intern/Fulltime)
- Figma Developer Intern
- Fullstack Developer (Intern/Fulltime)
- Data Analysis
- Android Developer

Remote Opportunity

Batch: First year to Final Year

๐Ÿ’ปApply: https://aminurmus.com/career

Use Referral Mail Id:
rupam.bernwal@aminurmus.com
๐Ÿ“ŒTravancore Analytics is looking for trained BTech Freshers to join our team!

๐Ÿ“ Who We're Looking For:
Fresh BTech graduates (2022/2023 pass-outs)
- No Active Backlogs

Technologies: iOS, Android,.Net/Net Full stack

๐Ÿ“Location: Trivandrum, Cochin and Mysore
please email akhil.ap@travancoreanalytics.com
Greetings from Sstudize,

I hope this message finds you well! Sstudize is an Ed-Tech startup working on enhancing personalised learning for Engineering Entrance Exams using Generative AI/LLMs. ๐ŸŒ

As we grow, we're looking for passionate, driven students like YOU to join us on this exciting journey! ๐Ÿš€

We're currently offering internships in the following area:

* 1. *LLM Interns ๐Ÿค–
-Assist in developing and fine-tuning AI models
   - Contribute to the integration of AI in our learning platform
   - Explore innovative applications of AI in education
   Apply here:
https://bit.ly/AIInternshipForm

Duration: 3 months
*Location: Remote
Stipend based role
๐Ÿ‘1
def stemmer(text):
    words = text.split()
    result = []
    for word in words:
        if word.endswith('ed'):
            word = word[:-2]
        elif word.endswith('ly'):
            word = word[:-2]
        elif word.endswith('ing'):
            word = word[:-3]
        if len(word) > 8:
            word = word[:8]
        result.append(word)
    return ' '.join(result)


Suffle stripping Stemmer โœ…
๐Ÿ‘1