๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.63K subscribers
5.61K photos
3 videos
95 files
10.6K 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
int minimumKeypadClickCount(string input)
{
    char right[9][3] = {
        {'a', 'j', 's'},
        {'b', 'o', 't'},
        {'c', 'p', 'u'},
        {'d', 'k', 'v'},
        {'h', 'm', 'z'},
        {'g', 'l', '@'},
        {'e', 'n', 'w'},
        {'f', 'q', 'x'},
        {'i', 'r', 'y'}};
    int n, c = 0, ans = 0;
    n = input.length();
    for (int i = 0; i < n; i++)
    {
        int d = input[i] - 97;
        d = d % 3;
        c += (d + 1);
    }
    for (int i = 0; i < n; i++)
    {
        for (int j = 0; j < 9; j++)
        {
            for (int k = 0; k < 3; k++)
            {
                if (right[j][k] == input[i])
                    ans += (k + 1);
            }
        }
    }
    return ans;
}

Amazon โœ…
โค1
Cientra hiring 2022 Batch (BTech/MTech - ECE, EEE) Graduate Engineers for working in Analog Layout/Circuit and RTL Design profile.

Eligibility :
** Theory Marks in X/XII should be 80% and above.
** BE/BTECH and ME/MTech score should be 70% and above.

Work location : Bangalore

Interviews planned : between 24 Aug & 26 Aug 2022.

Expected Date of joining : On or before 1 Sept 2022 in Cientra Bangalore Office.

Relocation assistance will be provided for all outstation candidates.

For electrical grads specially.

Interested candidates who suffice the eligibility criteria mentioned above can share their resume on freshers@cientra.com
๐Ÿ‘2