Skip to content
Newsletter
Random News
https://javaguidance.com/

Java Guidance

Java Development Made Easy

  • Angular
  • Regular Expression
  • Hibernate
  • Java 8 Stream
  • Spring Boot
  • About Us
    • Contact Us
    • Privacy Policy
  • Home
  • 2024
  • September

Month: September 2024

  • Interview Questions
  • Java

Java Program to Check Palindrome String using stream

admin10 months ago10 months ago01 mins

In this example, we are going to learn how to find string is palindrome or not using stream. Steps to solve this problem : 1. First we will iterate string by half of its size 2. We will compare each character so here we are comparing ith element with (length-i-1)th element if all matches then…

Read More
FirstNonRepeatedCharacter
  • Interview Questions
  • Java

First Non-Repeated Character using stream in java

admin10 months ago10 months ago02 mins

  In this example, we will learn how we can find first non-repeated character using stream so first we will go oversteps how to solve this problem. Step 1: Iterate all the character from input stream Step 2: Now we will count character occurrence and will store this result into LinkedHashMap, why we have used…

Read More
  • Interview Questions
  • Java

Git: the basic commands every developer should know

admin10 months ago10 months ago03 mins

In this blog, We are going to discuss basic git commands : 1. git init This command will create a new Git repository in the current directory and it will create a `.git` folder where version control information is stored. 2. git clone <repository> This command will create a local copy of a remote repository…

Read More

Recent Posts

  • Java Program to Check Palindrome String using stream
  • First Non-Repeated Character using stream in java
  • Git: the basic commands every developer should know
  • Java 8 Stream : Map Sum values example using mapToInt
  • Java 8 Stream : FlatMap example

Recent Comments

No comments to show.

Archives

  • September 2024
  • August 2024
  • January 2024
  • August 2023
  • July 2023

Categories

  • Interview Questions
  • Java
Copyright © 2023 Java Guidance. All rights reserved.