allcoding1_official
106K subscribers
766 photos
2 videos
73 files
759 links
Download Telegram
👍3👌1
Split the bill
👍2
250 rupees IT meterials and record classes

you can check content after pay

Contact:- @meterials_available


#paid promotion
👍3
n=int(input())
temp=list(map(int,list(bin(n)[2:])))
print(sum(temp))

Python3
👍3
def find_different_evenness_index(n, numbers):
    odd_count = even_count = 0
    odd_index = even_index = 0

    for i, num in enumerate(numbers):
        if num % 2 == 0:
            even_count += 1
            even_index = i + 1
        else:
            odd_count += 1
            odd_index = i + 1

    return odd_index if even_count > odd_count else even_index

n = int(input())
numbers = list(map(int, input().split()))

result = find_different_evenness_index(n, numbers)
print(result)

Accenture
👍9
🎯Accenture is Hiring

Role: Software Development Engineer
Experience: 0 - 2 years
Expected Salary: 4 - 8 LPA

Apply now: https://accenture.com/in-en/careers/jobdetails?id=ATCI-4154481-S1608969_en&SRC=RECNau

Telegram:- @allcoding1_official
👍52
Part time and full time jobs (Hyderabad)


https://t.me/+YrflVZId7o82MTM1


Share with your frnds
👍3
https://mega.nz/folder/bdt3CSID#QUaElxvHY0n_pa1jCaqbSA

Programming and Data Structures - Subbarao Lingamgunta - GATE 2024

https://mega.nz/folder/KEcFmLrZ#cKtAfLmDmAYDfRQkErsrGg

Computer Organization and Architecture - Vishvadeep Gothi - GATE 2024
👍4
F U L L - S T A C K - J S
Bootcamp 2.0 Course
@allcoding1_official
> What you’ll learn:

• HTML and DOM
• Starting with CSS
• Working on coming soon template
• Mobile responsive webpages
• Register a new account
• CSS animation and libraries
• Flexbox in CSS
• Projects- HTML & CSS
• JavaScript Refresher
• Project - JavaScript
• JavaScript interview questions
• Create a react template
• Getting friendly with states
• Building a Tic Tac Toe
• Learn React Context API with projects
• Making Project with Nodejs
• Getting Started with Reactive Native
• Making Project in React Native

> Download link:
https://mega.nz/folder/0cpE0LRY#Ky4F1-eRINjRnTkp7yd9fQ
👍101
2👍1
def getRegions(ip_addresses):
    def isValidIP(ip):
        parts = ip.split('.')
        if len(parts) != 4:
            return False
        for part in parts:
            if not part.isdigit():
                return False
            if not 0 <= int(part) <= 255:
                return False
        return True

    def getRegion(ip):
        first_octet = int(ip.split('.')[0])
        if 0 <= first_octet <= 127:
            return 1
        elif 128 <= first_octet <= 191:
            return 2
        elif 192 <= first_octet <= 223:
            return 3
        elif 224 <= first_octet <= 239:
            return 4
        elif 240 <= first_octet <= 255:
            return 5
        else:
            return -1

    regions = []
    for ip in ip_addresses:
        if isValidIP(ip):
            regions.append(getRegion(ip))
        else:
            regions.append(-1)
    return regions

Location Detection

@allcoding1_official
👍11
#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>

using namespace std;

int solution(const vector<int> &m, const vector<int> &t, int mlimit) {
    unordered_map<int, vector<int>> have;
   
    for (int i = 0; i < m.size(); ++i) {
        have[t[i]].push_back(m[i]);
    }
    int r = 0;
   
    for (auto& p : have) {
        auto& v = p.second;
        sort(v.begin(), v.end()); 
       
        int i = 0, j = v.size() - 1;
        for (; i < j; ++r, --j) {
            if (v[i] + v[j] <= mlimit) {
                ++i;
            }
        }
        if (i == j) {
            ++r;
        }
    }
    return r;
}

Task Scheduling

@allcoding1_official
👍3
int solve(vector<int>& c, int t) {
    unordered_map<int, int> m;
    int p = 0;

    for (int x : c) {
        if (m.count(x - t)) {
            p += m[x - t];
        }
        if (m.count(x + t)) {
            p += m[x + t];
        }
        m[x]++;
    }

    return p;
}

Project Estimates
👍31
🎯Circles.Life Hiring Intern - Devops
Location: Across India
Qualification: Currently pursuing or recently completed a degree in CS, IT, or a related field
Batch: Recent Batches
Experience : Freshers
Salary: Company Standards

Apply Now:- www.allcoding1.com

Telegram:- @allcoding1_official
👍7
MACHINE LEARNING WITH COMPLETE PYTHON (BASIC TO ADVANCED)

This course is designed for anyone who is interested in AWS cloud based machine learning and data science

Download Link :- https://mega.nz/folder/1Ip3xSgT#QBATxJcbIqYFtg6muJKArw
3👍1
Capgemini is Hiring Contact Support Group

Location - Noida

Experience - Freshers

Salary - 3.25 lpa

Apply link - https://app.joinsuperset.com/join/#/signup/student/jobprofiles/91b17d89-df0e-4608-a02f-1021314224c5


📢Not:- Application Deadline : 10 March 2024 11:59 PM
👍8❤‍🔥1
🎯WIPRO Recruitment For Freshers

Qualification:- Any Graduate

Experience:- freshers Training + Job

Salary : 30,000

Apply Now:- www.allcoding1.com

Telegram:- @allcoding1_official
👍11🔥1