|
1 |
| -# The-Modern-Java-Challenge |
2 |
| -The Modern Java Challenge, published by Packt Publishing |
| 1 | +# Java Coding Problems |
| 2 | + |
| 3 | +<a href="https://www.packtpub.com/programming/java-coding-problems?utm_source=github&utm_medium=repository&utm_campaign="><img src="https://www.packtpub.com/media/catalog/product/cache/e4d64343b1bc593f1c5348fe05efa4a6/9/7/9781789801415-original.jpeg" alt="Java Coding Problems " height="256px" align="right"></a> |
| 4 | + |
| 5 | +This is the code repository for [Java Coding Problems ](https://www.packtpub.com/programming/java-coding-problems?utm_source=github&utm_medium=repository&utm_campaign=), published by Packt. |
| 6 | + |
| 7 | +**Improve your Java Programming skills by solving real-world coding challenges** |
| 8 | + |
| 9 | +## What is this book about? |
| 10 | +* Adopt the latest JDK 11 and JDK 12 features in your applications |
| 11 | +* Solve cutting-edge problems relating to collections and data structures |
| 12 | +* Get to grips with functional-style programming using lambdas |
| 13 | +* Perform asynchronous communication and parallel data processing |
| 14 | +* Solve strings and number problems using the latest Java APIs |
| 15 | +* Become familiar with different aspects of object immutability in Java |
| 16 | +* Implement the correct practices and clean code techniques |
| 17 | + |
| 18 | +This book covers the following exciting features: |
| 19 | + |
| 20 | + |
| 21 | +If you feel this book is for you, get your [copy](https://www.amazon.com/dp/1789801419) today! |
| 22 | + |
| 23 | +<a href="https://www.packtpub.com/?utm_source=github&utm_medium=banner&utm_campaign=GitHubBanner"><img src="https://raw.githubusercontent.com/PacktPublishing/GitHub/master/GitHub.png" |
| 24 | +alt="https://www.packtpub.com/" border="5" /></a> |
| 25 | + |
| 26 | +## Instructions and Navigations |
| 27 | +All of the code is organized into folders. For example, Chapter02. |
| 28 | + |
| 29 | +The code will look like the following: |
| 30 | +``` |
| 31 | +public Map<Character, Integer> countDuplicateCharacters(String str) { |
| 32 | + Map<Character, Integer> result = new HashMap<>(); |
| 33 | + // or use for(char ch: str.toCharArray()) { ... } |
| 34 | + for (int i = 0; i<str.length(); i++) { |
| 35 | + char ch = str.charAt(i); |
| 36 | + result.compute(ch, (k, v) -> (v == null) ? 1 : ++v); |
| 37 | + } |
| 38 | + return result; |
| 39 | +} |
| 40 | +``` |
| 41 | + |
| 42 | +**Following is what you need for this book:** |
| 43 | +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. |
| 44 | + |
| 45 | +With the following software and hardware list you can run all code files present in the book (Chapter 1-13). |
| 46 | +### Software and Hardware List |
| 47 | +| Chapter | Software required | OS required | |
| 48 | +| -------- | ------------------------------------ | ----------------------------------- | |
| 49 | +| 1-13 | JDK | Windows, Mac OS X, and Linux (Any) | |
| 50 | + |
| 51 | +We also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it](https://static.packt-cdn.com/downloads/9781789801415_ColorImages.pdf). |
| 52 | + |
| 53 | +### Related products |
| 54 | +* Learn Java 12 Programming [[Packt]](https://www.packtpub.com/in/application-development/learn-java-12-programming?utm_source=github&utm_medium=repository&utm_campaign=) [[Amazon]](https://www.amazon.com/dp/1789957052) |
| 55 | + |
| 56 | +* Java 11 and 12 - New Features [[Packt]](https://www.packtpub.com/application-development/java-11-and-12-new-features?utm_source=github&utm_medium=repository&utm_campaign=) [[Amazon]](https://www.amazon.com/dp/1789133270) |
| 57 | + |
| 58 | +## Get to Know the Author |
| 59 | +**Anghel Leonard** |
| 60 | +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. |
| 61 | + |
| 62 | +He is the author of several books, videos, and dozens of articles related to Java technologies. |
| 63 | + |
| 64 | +### Suggestions and Feedback |
| 65 | +[Click here](https://docs.google.com/forms/d/e/1FAIpQLSdy7dATC6QmEL81FIUuymZ0Wy9vH1jHkvpY57OiMeKGqib_Ow/viewform) if you have any feedback or suggestions. |
| 66 | + |
| 67 | + |
0 commit comments