1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00

feat(challenges): add frequency-deviation

This commit is contained in:
Théo LUDWIG 2023-09-16 15:50:35 +02:00
parent 21f19c8a9f
commit 8aaf81bc65
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
14 changed files with 79 additions and 0 deletions

View File

@ -0,0 +1,67 @@
# frequency-deviation
Created by [@theoludwig](https://github.com/theoludwig) on 16 September 2023.
## Instructions
Given a string consisting of lowercase English letters, we define the frequency deviation of a substring as the difference between the maximum and the minimum frequencies of the characters in that substring.
A substring of a string is formed by any contiguous segment of the string. For example, given "bbacccc", the character appearing most frequently is 'c' with $4$ occurrences. The character that appears the fewest times is 'a' with $1$ occurrence. The frequency deviation of the entire string is $4 - 1 = 3$.
Given a string, $s$, representing the input string, find the maximum possible frequency deviation of any of its substrings.
### Constraints
- $$1 \leq s.length \leq 10^4$$
- $s$ consists of lowercase English letters.
## Source
- [LeetCode - Substring With Largest Variance](https://leetcode.com/problems/substring-with-largest-variance/)
- [Twitter @CoderNolimit](https://twitter.com/CoderNolimit/status/1668147202173050881)
## Examples
See the `test` folder for examples of input/output.
### Example 1
#### Input
```txt
bbacccc
```
#### Output
```txt
3
```
### Example 2
#### Input
```txt
aabb
```
#### Output
```txt
1
```
### Example 3
#### Input
```txt
aaaaa
```
#### Output
```txt
0
```

View File

@ -0,0 +1 @@
bbacccc

View File

@ -0,0 +1 @@
3

View File

@ -0,0 +1 @@
aabb

View File

@ -0,0 +1 @@
1

View File

@ -0,0 +1 @@
aaaaa

View File

@ -0,0 +1 @@
0

View File

@ -0,0 +1 @@
bbacccabab

View File

@ -0,0 +1 @@
2

View File

@ -0,0 +1 @@
aababbb

View File

@ -0,0 +1 @@
3

View File

@ -0,0 +1 @@
abcde

View File

@ -0,0 +1 @@
0