Uncategorized

Leetcode 219 Contains Duplicate 2

Leetcode 219: Contains Duplicate Given an integer array nums and an integer k, return true if there are two distinct indices i and j in the array such that nums[i] == nums[j] and abs(i – j) <= k.   Example 1: Input: nums = [1,2,3,1], k = 3 Output: true Example 2: Input: nums = [1,0,1,1], k = 1 Output: true Example 3: Input: nums = [1,2,3,1,2,3], k […]

Leetcode 219 Contains Duplicate 2 Read More »

Bimstec

BIMSTEC – A Bridge Between South Asia and Southeast Asia Introduction The Bay of Bengal Initiative for Multi-Sectoral Technical and Economic Cooperation (BIMSTEC) is a regional organization that connects South Asia and Southeast Asia. It serves as a platform for economic cooperation, regional connectivity, and strategic partnership among countries surrounding the Bay of Bengal. BIMSTEC is increasingly

Bimstec Read More »

Getting Started with Spring Boot: Basic REST CRUD Operations

Getting Started with Spring Boot: Basic REST CRUD Operations Spring Boot has become one of the most popular frameworks for building Java backend applications. It allows developers to quickly create production-ready applications with minimal setup. In this post, we’ll build a simple REST API with basic CRUD (Create, Read, Update, Delete) operations using Spring Boot.

Getting Started with Spring Boot: Basic REST CRUD Operations Read More »

Dare To Dream