From f9ab3913f974c8b8966d8b171a7add76a8643fd3 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 16 Jan 2024 16:28:36 -0500 Subject: [PATCH] extract problems to next site --- index.html | 6 +-- problems/dynamic-programming.html | 28 ---------- problems/gruvbox-light.css | 85 ------------------------------- problems/index.html | 16 ------ problems/rainwater.html | 45 ---------------- 5 files changed, 3 insertions(+), 177 deletions(-) delete mode 100644 problems/dynamic-programming.html delete mode 100644 problems/gruvbox-light.css delete mode 100644 problems/index.html delete mode 100644 problems/rainwater.html diff --git a/index.html b/index.html index 0a420fc..aea078b 100644 --- a/index.html +++ b/index.html @@ -61,9 +61,9 @@ > -

- interview problems -

+ + +

resume

transcript diff --git a/problems/dynamic-programming.html b/problems/dynamic-programming.html deleted file mode 100644 index 3c2ef53..0000000 --- a/problems/dynamic-programming.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - Dynamic Programming - - -

Dynamic Programming

-

Trapping Raintwaters Leetcode Problem Description

-
-

Problem Statement

-

hi

- - - diff --git a/problems/gruvbox-light.css b/problems/gruvbox-light.css deleted file mode 100644 index f1ffb5e..0000000 --- a/problems/gruvbox-light.css +++ /dev/null @@ -1,85 +0,0 @@ -/* Gruvbox Material Light theme for Highlight.js */ -pre code.hljs { - display: block; - overflow-x: auto; - padding: 1em; -} - -code.hljs { - padding: 3px 5px; -} - -.hljs { - background: #fbf1c7; /* Gruvbox Material Light bg */ - color: #3c3836; /* Gruvbox Material Light fg */ -} - -.hljs-comment { - color: #928374; /* Gruvbox Material Light comment */ -} - -.hljs-punctuation, -.hljs-tag { - color: #3c3836; -} - -.hljs-tag .hljs-attr, -.hljs-tag .hljs-name, -.hljs-attribute, -.hljs-doctag, -.hljs-keyword, -.hljs-meta .hljs-keyword, -.hljs-name, -.hljs-selector-tag { - color: #d79921; /* Gruvbox Material Light orange */ -} - -.hljs-deletion, -.hljs-number, -.hljs-quote, -.hljs-selector-class, -.hljs-selector-id, -.hljs-string, -.hljs-template-tag, -.hljs-type { - color: #cc241d; /* Gruvbox Material Light red */ -} - -.hljs-section, -.hljs-title { - color: #689d6a; /* Gruvbox Material Light green */ -} - -.hljs-link, -.hljs-operator, -.hljs-regexp, -.hljs-selector-attr, -.hljs-selector-pseudo, -.hljs-symbol, -.hljs-template-variable, -.hljs-variable { - color: #689d6a; /* Gruvbox Material Light green */ -} - -.hljs-literal { - color: #d3869b; /* Gruvbox Material Light pink */ -} - -.hljs-addition, -.hljs-built_in, -.hljs-bullet, -.hljs-code { - color: #98971a; /* Gruvbox Material Light yellow */ -} - -.hljs-meta { - color: #689d6a; /* Gruvbox Material Light green */ -} - -.hljs-meta .hljs-string { - color: #b8bb26; /* Gruvbox Material Light green */ -} - -.hljs-emphasis { - font-style: italic; -} diff --git a/problems/index.html b/problems/index.html deleted file mode 100644 index 23634b8..0000000 --- a/problems/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - Interview Problems — Data Structures and Algorithms - - -

Problems

-

Description

-

Trapping Rainwater

-

Dynamic Programming

- - diff --git a/problems/rainwater.html b/problems/rainwater.html deleted file mode 100644 index d204c4a..0000000 --- a/problems/rainwater.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - Sliding Window - - -

Trapping the Rainwaters

-

Trapping Raintwaters Leetcode Problem Description

-

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

-
-

Problem Statement

- -

Constraints

-

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. -

- - -