From 5e43af637ef5921b55df36e485665837412864c9 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 3 Nov 2023 18:57:18 -0400 Subject: [PATCH] feat: example problem article --- problems.html | 56 +++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 29 deletions(-) diff --git a/problems.html b/problems.html index 0399b11..dbaf900 100644 --- a/problems.html +++ b/problems.html @@ -4,37 +4,35 @@ - - Barrett Ruth + + Problems - Sliding Window - - nothing here for now :) +

Trapping the Rainwaters

+

Trapping Raintwaters Leetcode Problem Description

+

+ Example: Finding the maximum sum subarray of a fixed size. +

+
+    
+

Topic Relevance

+

+ The sliding window algorithm is widely used in software development for solving optimization problems, especially when dealing with arrays or lists. It's useful in scenarios where you need to track a subset of data within a larger dataset efficiently, making it a crucial tool in fields like data analysis, machine learning, and others. +

- - + return water; +} +` +