๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
Fresher...!!

Company Name-Ramy Infotech Pvt Ltd.
Qualifications : BCA/B.Tech/MBA/MCA
Position : Business Development Executive /Technical Recruiter
Location : Noida Sector 62, Uttar Pradesh
Job Type : Full-time
Shift : Night
Timing : 7:00 PM to 4:30 AM
5 Days working

Looking forward to connect with the TPOs and Placement cells of Colleges and Institutes who can provide us candidates with BCA/B.Tech/MCA background for Noida location.

Interested universities/ colleges TPO and Placement cells are requested to share their details in a comment or can reach to me at tanya@ramyinfotech.com/hr@ramyinfotech.com /+918700758012
we are looking for freshers willing to be an ESG research professional.
If you are interested, please drop me an email at isha.rai@wipro.com

Eligibility Criteria:

Experience: 0-1 year
Location: Gurgaon & Pune

Educational Background:
* Commerce/Science/Economics graduate (required)
* MBA in Finance/Economics/Sustainability (preferred)


Technical Capabilities:
* Basic awareness about ESG, sustainability, CSR, greenhouse gas emissions, renewable energy, sustainable finance, carbon footprint
* Ability to apply concepts learned during MBA or graduation
#include <bits/stdc++.h>
using namespace std;

int main() {
    int N, Q, S, K;
    cin >> N;
    vector<int> band(N+1);
    for (int i = 1; i <= N; ++i) {
        band[i] = i;
    }
    cin >> Q >> S;
    for (int i = 0; i < Q; ++i) {
        int pos1, pos2;
        cin >> pos1 >> pos2;
        swap(band[pos1], band[pos2]);
    }
    cin >> K;
    cout << band[K] << endl;
    return 0;
}

Nokia โœ