GitXplorerGitXplorer
P

Java-Coding-Problems

public
776 stars
528 forks
7 issues

Commits

List of commits on branch master.
Verified
dffaf0da5b17d2390a40482a6378f1eb9bc2318c

Update README.md

AAnghelLeonard committed a year ago
Unverified
5c21e80555f5b6d093450550909041155c244331

Java I/O - Paths, files, buffers, scanning and formatting

AAnghelLeonard committed a year ago
Unverified
c115f3f56708183012b7f28ef5e28a1cc26468ce

Java I/O - Paths, files, buffers, scanning and formatting

AAnghelLeonard committed a year ago
Unverified
23ba1ee6bcfe58fe3a78d9e7e56ea827e8933041

Merge branch 'master' of https://github.com/PacktPublishing/Java-Coding-Problems

AAnghelLeonard committed a year ago
Unverified
b272fd5a77c43008894324ae7c2e813e167e577a

Benchmark file copy

AAnghelLeonard committed a year ago
Unverified
057f7a5e5035ad13e830c326dbd308dea76de976

remove 5$ campaign - 2022

PPackt-ITService committed 2 years ago

README

The README file for this repository.

Java Coding Problems

Java Coding Problems

This is the code repository for Java Coding Problems , published by Packt.

Improve your Java Programming skills by solving real-world coding challenges

What is this book about?

  • Adopt the latest JDK 8 - JDK 13 features in your applications
  • Solve cutting-edge problems relating to collections and data structures
  • Get to grips with functional-style programming using lambdas
  • Perform asynchronous communication and parallel data processing
  • Solve strings and number problems using the latest Java APIs
  • Become familiar with different aspects of object immutability in Java
  • Implement the correct practices and clean code techniques

This book covers the following exciting features:

If you feel this book is for you, get your copy today!

https://www.packtpub.com/

Instructions and Navigations

All of the code is organized into folders. For example, Chapter02.

The code will look like the following:

public Map<Character, Integer> countDuplicateCharacters(String str) {

   Map<Character, Integer> result = new HashMap<>();
 
   // or use for(char ch: str.toCharArray()) { ... }
   for (int i = 0; i<str.length(); i++) {
      char ch = str.charAt(i);
      result.compute(ch, (k, v) -> (v == null) ? 1 : ++v);
   }
   
   return result;
}

Following is what you need for this book: If you are a Java developer who wants to level-up by solving real-world problems, then this book is for you. Working knowledge of Java is required to get the most out of this book.

With the following software and hardware list you can run all code files present in the book (Chapter 1-13).

Software and Hardware List

Chapter Software required OS required
1-13 JDK Windows, Mac OS X, and Linux (Any)

We also provide a PDF file that has color images of the screenshots/diagrams used in this book. Click here to download it.

Related products

Get to Know the Author

Anghel Leonard is a Chief Technology Strategist with more than 20 years of experience in the Java ecosystem. In his daily work, he is focused on architecting and developing Java distributed applications that empower robust architectures, clean code, and high performance. He is also passionate about coaching, mentoring, and technical leadership.

He is the author of several books, videos, and dozens of articles related to Java technologies.

Suggestions and Feedback

Click here if you have any feedback or suggestions.

Download a free PDF

If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to claim your free PDF.

https://packt.link/free-ebook/9781789801415