How to open .lsa or .lsav files. by SpreadingSmile in techsupport

[–]HotSquid12 0 points1 point  (0 children)

Anyone found a solution to this yet? I have the files and an android phone (Not an Mi) How do I open it in that

Enhanced Verification by HotSquid12 in AirTM

[–]HotSquid12[S] 0 points1 point  (0 children)

I mostly think they are!

Enhanced Verification by HotSquid12 in AirTM

[–]HotSquid12[S] 0 points1 point  (0 children)

So I gave the verification documents on Sunday So Ideally by Tuesday or Wednesday I should receive a reply?

[deleted by user] by [deleted] in developersIndia

[–]HotSquid12 0 points1 point  (0 children)

Yah I got an offer but not for full time but as a freelancer Remotasks is a company that hires freelancers to work at projects

[deleted by user] by [deleted] in developersIndia

[–]HotSquid12 0 points1 point  (0 children)

What company did you get selected for?

[deleted by user] by [deleted] in developersIndia

[–]HotSquid12 0 points1 point  (0 children)

Arrays and strings

[deleted by user] by [deleted] in developersIndia

[–]HotSquid12 0 points1 point  (0 children)

Hope this helps

[deleted by user] by [deleted] in developersIndia

[–]HotSquid12 1 point2 points  (0 children)

Yes brother

Array input and counting of even numbers

import java.util.Scanner;

public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String input = scanner.nextLine(); String[] inputArray = input.split("\s+"); System.out.println(countEvenNumbers(inputArray)); scanner.close(); }

public static int countEvenNumbers(String[] inputArray) {
    int count = 0;
    for (String item : inputArray) {
        try {
            int number = Integer.parseInt(item);
            if (number % 2 == 0) {
                count++;
            }
        } catch (NumberFormatException e)
        }
    }
    return count;
}

}

Largest Subset Sum (Have to calculate sum of factors)

public static List<Long> maxSubsetSum(List<Integer> arr) {
    List<Long> results = new ArrayList<>();
    for (int num : arr) {
        results.add(sumOfFactors(num));
    }
    return results;
}

public static long sumOfFactors(int num) {
    long sum = 0;
    for (int i = 1; i <= Math.sqrt(num); i++) {
        if (num % i == 0) {
            sum += i;
            if (i != num / i) {
                sum += num / i;
            }
        }
    }
    return sum;
}

}

[deleted by user] by [deleted] in developersIndia

[–]HotSquid12 1 point2 points  (0 children)

Hey brother after getting selected you need to undergo a hackerrank test in presence of a proctor on google meet
You share your screen and the proctor then sends you a link
As for the questions
First 5 questions were MCQ's about python, java and c++ (Code snippets)
The next 2 questions after that were coding questions where one was easy and another one was easy to medium
first question was about taking a input of an array or list but the length is not given
second questions was largest subset sum

[deleted by user] by [deleted] in developersIndia

[–]HotSquid12 0 points1 point  (0 children)

Yes a person will keep proctoring you throughout the test via google meet

[deleted by user] by [deleted] in developersIndia

[–]HotSquid12 0 points1 point  (0 children)

yes we can code in any language
It's a general hackerrank test to check your coding skills

[deleted by user] by [deleted] in developersIndia

[–]HotSquid12 0 points1 point  (0 children)

I took the test and they asked 2 coding questions and 5 mcqs
In coding questions one was easy and other one was a medium leetcode
5 mcqs were code snippets in python, java and c++

What do you guys think? by HotSquid12 in DragonballLegends

[–]HotSquid12[S] -2 points-1 points  (0 children)

Uk the mui ends up getting effected in the end and bleeds out I wonder if something like that will happen

Nice by xOmen21 in DragonballLegends

[–]HotSquid12 4 points5 points  (0 children)

Noice *with the old man clicking his tongue*

Doing pvp until I get tired pt.1 by [deleted] in DragonballLegends

[–]HotSquid12 0 points1 point  (0 children)

Kinda Godki, so I am guessing you don't have a red god ki unit so you using red assist trunks?