Showing posts with label java. Show all posts
Showing posts with label java. Show all posts

Friday, June 11, 2021

Arrays - DS | HackerRank | DS | Arrays | Color the Code

 Arrays - DS ( HackerRank )


Solution : 


import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.function.*;
import java.util.regex.*;
import java.util.stream.*;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.toList;

class Result {

    /*
     * Complete the 'reverseArray' function below.
     *
     * The function is expected to return an INTEGER_ARRAY.
     * The function accepts INTEGER_ARRAY a as parameter.
     */

    public static List<Integer> reverseArray(List<Integer> a) {
    // Write your code here
        
    Collections.reverse(a);
    return a;
    }

}

public class Solution {
    public static void main(String[] args) throws IOException {
        BufferedReader bufferedReader = new BufferedReader(new 
        InputStreamReader(System.in));
        BufferedWriter bufferedWriter = new BufferedWriter(new 
        FileWriter(System.getenv("OUTPUT_PATH")));

        int arrCount = Integer.parseInt(bufferedReader.readLine()
        .trim());

        List<Integer> arr = Stream.of(bufferedReader.readLine()
        .replaceAll("\\s+$""").split(" "))
        .map(Integer::parseInt)
        .collect(toList());

        List<Integer> res = Result.reverseArray(arr);

        bufferedWriter.write(
            res.stream()
                .map(Object::toString)
                .collect(joining(" "))
            + "\n"
        );

        bufferedReader.close();
        bufferedWriter.close();
    }
}




                        

Friday, January 1, 2021

Java Reflection - Attributes | Advanced Java | HackerRank | Practice | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-reflection-attributes/problem

Solution :

Java Varargs - Simple Addition | Advanced Java | HackerRank | Practice | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/simple-addition-varargs/problem

Solution : 

Java Iterator | OOP | HackerRank | Java | Practice | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-iterator/problem

Solution :

Java Abstract Class | OOP | HackerRank | Java | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-abstract-class/problem

Solution : 

Java Inheritance I | OOP | HackerRank | Java | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-inheritance-1/problem

Solution :

Java BitSet | Data Structure | HackerRank | Practice | Java | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-bitset/problem

Solution : 

Java Hashset | Data Structure | HackerRank | Java | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-hashset/problem

Solution : 

Java Map | Data Structure | Java | HackerRank | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/phone-book/problem

Solution : 

Java List | Data Structure | HackerRank | JAVA | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-list/problem

Solution :

Java Arraylist | Data Structure | HackerRank | JAVA | Solution | Color The Code



Problem  : https://www.hackerrank.com/challenges/java-arraylist/problem

Solution :

Java Subarray | Data Structure | HackerRank | JAVA | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-negative-subarray/problem

Solution :

Java 2D Array | Data Structure | HackerRank | JAVA | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-2d-array/problem

Solution : 

Valid Username Regular Expression | String | HackerRank | Solution | color the code



Problem : https://www.hackerrank.com/challenges/valid-username-checker/problem

Solution : 

Pattern Syntax Checker | HackerRank | JAVA | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/pattern-syntax-checker/problem

Solution : 

Java String Tokens | HackerRank | JAVA | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-string-tokens/problem

Solution : 

Java Anagrams | HackerRank | Java | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-anagrams/problem

Solution :

Java String Reverse | HackerRank | JAVA | Solution | color the code



Problem : https://www.hackerrank.com/challenges/java-string-reverse/problem

Solution :

Java Substring Comparisons | HackerRank | JAVA | Solution | color the code



Problem : https://www.hackerrank.com/challenges/java-string-compare/problem

Solution : 

Java Substring | HackerRank | JAVA | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/java-substring/problem

Solution :