life is too short for a diary



Posts Tagged: java (Page 3)

Manage Java Version Using SDKMAN

As a Java developer, you often need to switch between multiple versions of Java for different projects. Managing this manually can be tedious, but SDKMAN! is a great tool that simplifies the process of installing, listing, and switching between Java versions...

Continue reading → java



An Introduction to Spring Data Redis Reactive

Spring Data Redis Reactive offers a powerful solution for working with Redis in a non-blocking, reactive manner. Let's dive into the key components and how to use them effectively...

Continue reading → redis java



792. Number of Matching Subsequences

Given a string s and an array of strings words, return the number of words[i] that is a subsequence of s. A subsequence of a string is a new string generated from the original string with some characters (can be none) deleted without changing the relative order of the remaining characters...

Continue reading → leetcode java