allcoding1
27.7K subscribers
2.2K photos
2 videos
77 files
852 links
Download Telegram
char solve(string o, string r) {
    string res = "";
    int j = 0;
    for (int i = 0; i < o.size(); i++) {
        if (o[i] != r[j]) {
            res += o[i];
        } else {
            j++;
        }
    }
    return res[0];
}

Tech Mahindra

telegram:- @allcoding1
#include <bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    cin >> s;
    int n;
    cin >> n;
    for (int i = n; i < s.size() + n; i++)
    {
        cout << s[i % s.size()];
    }
    return 0;
}
C++

Tech Mahindra

Telegram @allcoding1
👍4
#include <bits/stdc++.h>
using namespace std;

int main()
{
    string s;
    cin >> s;
    int ans = 0;
    map<char, int> m;
    for (int i = 0; i < s.size(); i++)
    {
        m[s[i]]++;
    }
    for (auto x : m)
    {
        if (x.second == 1)
            ans++;
    }
    cout << ans;
    return 0;
}

Tech Mahindra
C++

Tech Mahindra

Telegram @allcoding1
👍5
IBM
👍2
hours = int(input())
seconds = hours * 60 * 60
print(seconds)

Deloitte
👍2🤩1
500 TB Tutorials + Books + Courses + Trainings + Workshops + Educational Resources

🔹Data science
🔹Python
🔹Artificial Intelligence
🔹AWS Certified
🔹Cloud
🔹BIG DATA
🔹Data Analytics
🔹BI
🔹Google Cloud Platform
🔹IT Training
🔹MBA
🔹Machine Learning
🔹Deep Learning
🔹Ethical Hacking
🔹SPSS
🔹Statistics
🔹Data Base
🔹Learning language resources ( English🏴󐁧󐁢󐁥󐁮󐁧󐁿 , French🇨🇵 , German🇩🇪 )


₹50

Contact:- @meterials_available
👍5🥰1🎉1
🎯Mitsogo fresher hiring all batches

Apply:- https://www.mitsogo.com/career/opportunities-for-freshers/

Telegram:- @allcoding1
🎯Company : S&P Global

Role: Associate Software Engineer

Batch : 2022,2023

Apply: https://careers.spglobal.com/jobs/291161?lang=en-us

Telegram:- @allcoding1
def exclusive_time(n, logs):
result = [0] * n
stack = []
prev_timestamp = 0

for log in logs:
log_parts = log.split(":")
function_id, action, timestamp = int(log_parts[0]), log_parts[1], int(log_parts[2])

if action == "start":
if stack:
result[stack[-1]] += timestamp - prev_timestamp
stack.append(function_id)
prev_timestamp = timestamp
else: # action == "end"
result[stack.pop()] += timestamp - prev_timestamp + 1
prev_timestamp = timestamp + 1

return result

Telegram:- @allcoding1
👍3
#include <iostream>
#include <vector>

using namespace std;

// Function to calculate the sum of factors for a given number
int factorsSum(int n) {
int sum = 0;
for (int i = 1; i <= n; ++i) {
if (n % i == 0) {
sum += i;
}
}
return sum;
}

// Function to calculate sums for each number in the array
vector<int> maxSubsetSum(vector<int>& arr) {
vector<int> result;
for (int num : arr) {
result.push_back(factorsSum(num));
}
return result;
}

int main() {
vector<int> arr = {12};
vector<int> result = maxSubsetSum(arr);
cout << "Result: ";
for (int num : result) {
cout << num << " ";
}
cout << endl;
return 0;
}

Only 10/13 passed

Telegram:- @allcoding1
👍41
Scammers

+91 93923 88258
👍1
🎯Numeus is Hiring

Role: Quantitative researcher
Batch- 2023 and before
Link-  https://boards.eu.greenhouse.io/numus/jobs/4083711101

Telegram:- @allcoding1
🎯ValueLabs is Hiring !!

Role: Frontend Developer

🔗Apply here: https://linkedin.com/jobs/view/3829198920/
🎯Accenture Hiring System and Application Services Associate:

Eligibility: All streams/branches of  B.Sc., BCA, BBA, B.A, B.Com, B.Voc, BMS, B.B.S, B.F.M, B.B.I, B.A.F, B.Ed., B.M.M., B.FA, , B.S.Micr ,B. Design, M.C.M, M.Sc (Non-CS/IT), M.A, M.Com or M.FA

Note: BE/ BTECH / ME / MTECH/MCA/ MSC (CS and IT Branch) MBA /PGDBM candidates are not eligible to apply for this role

Graduation Year: 2023 / 2024
Experience: 0 Month - 11 Month

Salary: INR 3,44,200
Location: Bangaluru, Hyderabad, Chennai, Coimbatore, Gurugram, Pune, Kolkata, Nagpur, Indore, Mumbai, Jaipur

Apply now:- https://www.allcoding1.com/2024/02/accenture-hiring.html?m=1


Telegram:- @allcoding1
👍3🥰1
🎯Accenture Biggest Hiring:

Role: PADA ( Packaged App Development Associate )

Eligibility: All streams/branches of B.E/B.Tech/M.E/M.Tech, MCA, and M.Sc. (CSE, IT only)

Graduation Year: 2023 / 2024
Experience: 0 Month - 11 Month

Salary: INR 4,60,700
Location: Bangalore, Hyderabad, Pune, Mumbai, Chennai, Gurugram, Kolkata, Indore, Jaipur, Coimbatore

Apply Now:- https://www.allcoding1.com/2024/02/accenture-hiring.html?m=1

If you are getting URL issue in above link then use this alternate link:

Alternate Apply Now:- https://www.allcoding1.com/2024/02/accenture-hiring.html?m=1


Telegram:- @allcoding1
👍9🔥1