<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Dynamic Programming on Code Mirroring</title><link>https://www.codemirroring.com/ds-algo/dynamic-programming/</link><description>Recent content in Dynamic Programming on Code Mirroring</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><atom:link href="https://www.codemirroring.com/ds-algo/dynamic-programming/index.xml" rel="self" type="application/rss+xml"/><item><title>Count Strictly Increasing Subarrays</title><link>https://www.codemirroring.com/ds-algo/dynamic-programming/count-strictly-increasing-subarrays/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.codemirroring.com/ds-algo/dynamic-programming/count-strictly-increasing-subarrays/</guid><description>Count Strictly Increasing Subarrays - Golang Problem statement: You are given an array nums consisting of positive integers.
Return the number of subarrays of nums that are in strictly increasing order.
A subarray is a contiguous part of an array.
Example:
Input:
[1,3,5,4,4,6] Expected output:
10 Explanation: The strictly increasing subarrays are the following:
Subarrays of length 1: [1], [3], [5], [4], [4], [6]. Subarrays of length 2: [1,3], [3,5], [4,6].</description></item></channel></rss>