feat: article demo

This commit is contained in:
Barrett Ruth 2023-11-03 19:57:01 -04:00
parent 5e43af637e
commit c0e6937e40
5 changed files with 108 additions and 16 deletions

View file

@ -4,25 +4,27 @@
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="gruvbox-light.css" />
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="problems.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/highlight.min.js"></script>
<title>Problems - Sliding Window</title>
</head>
<body>
<h1>Trapping the Rainwaters</h1>
<p>Trapping Raintwaters Leetcode Problem Description</p>
<p>
Example: Finding the maximum sum subarray of a fixed size.
</p>
<pre class="sliding-window-algorithm">
</pre>
<h1>Trapping the Rainwaters</h1>
<p>Trapping Raintwaters Leetcode Problem Description</p>
<p>Example: Finding the maximum sum subarray of a fixed size.</p>
<pre><code></code></pre>
<h2>Topic Relevance</h2>
<p>
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.
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.
</p>
</body>
<script>
document.querySelector('.sliding-window-algorithm').innerText =
String.raw`
<script>
document.querySelector("code").textContent = `
int trap(vector<int>& height) {
auto l = height.begin(), r = height.end() - 1;
int level = 0, water = 0;
@ -33,6 +35,8 @@ int trap(vector<int>& height) {
}
return water;
}
`
</script>
`;
hljs.highlightAll();
</script>
</body>
</html>