Core java
20 OctoberJava Array to Set
In this post, we will learn java array to set conversion. There are many ways to convert array to set. 1. Using Java 8’s Stream If you are using Java 8, I would recommend using Java 8 Stream. [crayon-6a29df9f21a36988286260/] Output [John, Martin, Mary] 2. Using HashSet constructor() We can directly call HashSet‘s constructor for java […]
16 OctoberCustom BlockingQueue implementation in java
In this post, we will see how to create your own custom BlockingQueue. This is one of the most asked java interview questions. You need to implement your own BlockingQueue. This question helps interviewer to get your understanding of multithreading concepts. Here is simple implementation of BlockingQueue. We will use array to store elements in […]
09 OctoberStake.hu regisztráció és bónusz számolás – Teljes útmutató
A regisztráció egy online kaszinóban gyors, de ha pontosan tudod, mire számíthatsz az egyes lépéseknél, időt és frusztrációt takarítasz meg. Ez az útmutató lépésről lépésre bemutatja, hogyan hozhatsz létre fiókot a Stake Casinón, hogyan számolhatod ki a bónuszodat, és milyen biztonsági intézkedésekkel találkozhatsz. Gyors ellenőrzőlista Ellenőrizd a rendszerkövetelményeket (stabil internet, friss böngésző) Készítsd elő a […]
08 OctoberEnergycasino regisztrációs útmutató – bónuszok és pörgetések kiszámítása
Mielőtt bármely online kaszinóban befizetnél, szánj öt percet ennek az ellenőrzőlistának az átolvasására – ez lefedi azokat a lépéseket, amelyeket a legtöbb játékos kihagy. Ez az útmutató pontosan bemutatja, hogyan regisztrálj, hogyan igényeld az Energycasino 10 free spins ajánlatot, és hogyan számold ki a bónuszok valódi értékét. Előfeltételek Érvényes e-mail cím – a regisztráció megerősítéséhez […]
05 OctoberJava FileReader Example
The FileReader class of java.io package provides a seamless and easy-to-use way to read and analyse the contents of a file using Java. The FileReader class, works similar to the FileInputStream class because it reads the file data as a stream. However, unlike the latter which reads files as a stream of bytes, FileReader reads […]
30 SeptemberLongest common substring
If you want to practice data structure and algorithm programs, you can go through 100+ data structure and algorithm programs. In this post, we will see how to find the longest common substring in java. Program Given two String, find longest common substring. For example: String 1: Java2blog String 2: CoreJavaTutorial Longest common subString is: […]
27 SeptemberPrint maximum occurring character in a String
In this post, we will see how to print the maximum occurring character in a String. Problem Print maximum occurring character in a String For example: String 1: java2blog tutorial Character: a has occurred maximum times in String: 3 ———————- String 2: This is test message Character: s has occurred maximum times in String: 5 […]
03 SeptemberGgbet kasino: podrobný návod k registraci a přihlášení
Založení účtu v online kasinu je rychlé, ale vědět přesně, co v každém kroku očekávat, šetří čas a frustraci. Tento průvodce vás provede celým procesem – od prvního kliknutí až po první výběr – a zároveň vám ukáže, jak správně vyhodnotit bonusové nabídky a vyhnout se častým chybám. Rychlý kontrolní seznam Ověřte, že je vám […]
12 AugustIntersection of two linked lists
If you want to practice data structure and algorithm programs, you can go through 100+ java coding interview questions. In this post, we will see how to find Intersection of two linked lists. Problem Given two singly linked lists, find if two linked lists intersect. If they intersect, find intersection point. Solution Here is simple algorithm to […]