๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.61K 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
Leighton India Hiring for Freshers 
Delhi NCR based candidates only apply.
Project type - High Rise Residential Building 
Position - Junior Engineer / Site Engineer / Project Engineer
Work location - Gurugram
Education - BE / B tech Civil
Year of passing - 2023
last date of cv submission 9th Feb 2024

Please share your CV at diksha.sonawane@leighton.co.in and mention the applied position in the subject of the email.

Mention the below details
Expected CTC โ€“
Joining availability - 
Current location -
๐Ÿ‘2
public class Main {
    public static String StringChallenge(String str) {
        StringBuilder result = new StringBuilder();
        int count = 1;
        char prev = str.charAt(0);
        for (int i = 1; i < str.length(); i++) {
            char current = str.charAt(i);
            if (current == prev) {
                count++;
            } else {
                result.append(count).append(prev);
                count = 1;
                prev = current;
            }
        }
        result.append(count).append(prev);

        String challengeToken = "vst3w5cpeaf";
        StringBuilder finalOutput = new StringBuilder(result.toString() + challengeToken);

        for (int i = 3; i < finalOutput.length(); i += 4) {
            finalOutput.setCharAt(i, '_');
        }

        return finalOutput.toString();
    }

String challenge โœ