X Tutup
# Java Coding Problems Hello. These are the most coding problems during technical interviews, as I experienced it myself. ## Running The Code It's the convenience of the Codespaces online! Simply create a Codespace, you don't need to install anything, just simply run using Bash. Also starting Java 11, you can now run it even without compiling ! ``` cd src ``` then ``` java [NameOfTheFile].java ``` this is the interface of the online Codespaces ![image](https://user-images.githubusercontent.com/47092464/182785921-838bd0e5-2707-4e08-8a0b-9127afba6866.png) enjoy ! ## License This is based on : https://www.journaldev.com/370/java-programming-interview-questions I don't know about the specific license the author used but I'm still including his link for his copyright. When you copy my work, include the author's link and my MIT license for my modifications. ## Sources [Binary Search](https://github.com/jdevstatic/java-coding-problems/blob/main/src/BinarySearch.java) [Checking Palindrome](https://github.com/jdevstatic/java-coding-problems/blob/main/src/CheckPalindromeString.java) [Inheritance](https://github.com/jdevstatic/java-coding-problems/tree/main/src/inheritance) [Integer Array Sum](https://github.com/jdevstatic/java-coding-problems/blob/main/src/IntegerArraySum.java) [Merge Sort](https://github.com/jdevstatic/java-coding-problems/blob/main/src/MergeSort.java) [Prime Number Checker](https://github.com/jdevstatic/java-coding-problems/blob/main/src/PrimeNumberCheck.java) [Fibonacci Series](https://github.com/jdevstatic/java-coding-problems/blob/main/src/PrintFibonacciSeries.java) [Remove A Character](https://github.com/jdevstatic/java-coding-problems/blob/main/src/RemoveAChar.java) [Remove Whitespaces](https://github.com/jdevstatic/java-coding-problems/blob/main/src/RemoveWhiteSpaces.java) [Reverse A Linked List](https://github.com/jdevstatic/java-coding-problems/blob/main/src/ReverseALinkedList.java) [Reverse A String](https://github.com/jdevstatic/java-coding-problems/blob/main/src/ReverseString.java) [Shuffle Array](https://github.com/jdevstatic/java-coding-problems/blob/main/src/ShuffleArray.java) [Sort Array](https://github.com/jdevstatic/java-coding-problems/blob/main/src/SortArray.java) [Check Vowels](https://github.com/jdevstatic/java-coding-problems/blob/main/src/StringContainsVowels.java) dfdfdfd
X Tutup