Skip to content

Blog

Production error deep-dives — root cause, reproduction, and the fix that holds.

Members only

How To Create Strings in Java?

How To Configure a Port For a Spring Boot Application

Learn how to change the default port in your Spring Boot application using application.properties, YAML, programmatic settings, or command-line arguments. Avoid port conflicts and customize your setup easily with these straightforward configuration methods.

How To Configure a Port For a Spring Boot Application
Members only

Leetcode 238: Product Of Array Except Self

Leetcode 238: Product Of Array Except Self
Members only

Course Overview

Top 10 programming languages to learn in 2024

Introduction As we step into the arena of 2024, the demand for skilled software programmers continues to surge, and staying ahead of the curve is more crucial than ever. Choosing the right programming language to master can significantly impact your career path. We all know that the pandemic has commenced

Control Statements In Java

Introduction When you write code or a program, the program executes the blocks in the order they appear from top to bottom. Control flow statements help break up this execution flow by providing decision-making, looping, and branching capabilities. They allow your program to execute specific code blocks conditionally. In

Printing To The Console in Java

Introduction Printing something on the console or panel that displays important messages, such as errors, messages, or data outputs, directly for developers. In Java, you can print to the console using the System.out.println() method. Here's a simple example: System.out.println(100); prints 100 on the

Members only

Leetcode 217: Contains Duplicate

This lesson will teach you how to find the duplicate element using a hashing algorithm.

Members only

Leetcode 121: Best Time To Buy and Sell Stock

Leetcode 121: Best Time To Buy and Sell Stock
Paid

Blind 75 LeetCode Problems: Detailed Solutions