Skip to content
#

stringbuilder-class-java

Here are 7 public repositories matching this topic...

This repository is a collection of my implementations and practice solutions for fundamental data structures and algorithms using Java. The purpose of this collection is to document my learning progress, strengthen my coding and problem-solving skills.

  • Updated Oct 5, 2025
  • Java

Consider the 2-SUM problem: given an array of n integers (possibly with repetitions), and a target integer t find if there exist two distinct elements x, y in the array such that x + y = t. There are multiple approaches to find a O(n log n) solution to this problem. We would like to implement a dynamic version of this problem. In this version, y…

  • Updated Jan 1, 2021
  • Java

Improve this page

Add a description, image, and links to the stringbuilder-class-java topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the stringbuilder-class-java topic, visit your repo's landing page and select "manage topics."

Learn more