Achievements : Foobar + Hackathon

General Questions

  1. Can you provide an overview of your participation in the Code Samurai Hackathon 2024?

  2. What was the most challenging aspect of the Preliminary Round 2 in the Code Samurai Hackathon, and how did you overcome it?

  3. Describe your software project that secured the 1st Runners-up position at the IEEE Branch Fest. What was unique about it compared to the hardware projects?

  4. In the IT VERSE Hackathon, what was the API you worked with, and what was your approach to leveraging it?

  5. Can you tell me more about the project you showcased at the IT VERSE-2023 and what made it stand out among the top 14?

  6. What was the idea behind the mobile app you presented in the Mobile App & Game Idea Competition in Sylhet?

  7. What strategies did you employ to achieve a top 8 ranking in the Brainstation Hackathon?

Technical Questions

  1. Can you discuss one of the most complex problems you’ve solved on LeetCode? What was your approach and solution?

  2. What are some specific algorithms or data structures you used frequently in competitive programming on platforms like Codeforces or CodeChef?

  3. Describe your experience with Google Foobar’s Secret Hiring Challenge. What kind of problems did you encounter, and how did you solve them?

Team and Project Management

  1. How did you manage your team during the various hackathons and competitions? What roles did you play?

  2. Can you provide an example of how you handled a conflict or disagreement within your team during one of these competitions?

  3. What project management tools or methodologies did you use to keep your projects on track during the hackathons?

Learning and Development

  1. What did you learn from participating in multiple hackathons and competitions?

  2. How do you stay updated with the latest trends and technologies in software development?

  3. Can you describe a time when you failed to achieve your goal in a competition? What did you learn from that experience?

Impact and Future Goals

  1. How do you think your participation in these competitions has prepared you for a role in our company?

  2. What are your future goals in terms of software development and competitive programming?

  3. How do you plan to use the skills and experiences gained from these hackathons in your professional career?

Google Foobar Question

Problem Statement - 1

You are given two almost identical lists of worker IDs, x and y. One of the lists contains an additional ID that is not present in the other list. Your task is to write a function solution(x, y) that compares the lists and returns the additional ID.

Examples

  1. Given the lists x = [13, 5, 6, 2, 5] and y = [5, 2, 5, 13], the function solution(x, y) should return 6 because the list x contains the integer 6 and the list y doesn't.

  2. Given the lists x = [14, 27, 1, 4, 2, 50, 3, 1] and y = [2, 4, -4, 3, 1, 1, 14, 27, 50], the function solution(x, y) should return -4 because the list y contains the integer -4 and the list x doesn't.

public class Solution {
    public static int solution(int[] x, int[] y) {
        int xorSum = 0;

        for (int num : x) {
            xorSum ^= num;
        }
        for (int num : y) {
            xorSum ^= num;
        }

        return xorSum;
    }
}

Last updated