Skip to content

Commit 8cc44d4

Browse files
committed
added refrenced links to problem 1491
Signed-off-by: rajput-hemant <[email protected]>
1 parent 1976a3a commit 8cc44d4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

TOPICWISE.md

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
| **0888** | [Fair Candy Swap][888] | Array, Hash Table, Binary Search, Sorting | ![][easy] | |
3232
| **1232** | [Check If It Is a Straight Line][1232] | Array, Math, Geometry | ![][easy] | |
3333
| **1480** | [Running Sum of 1d Array][1480] | Array, Prefix Sum | ![][easy] | |
34+
| **1491** | [Average Salary Excluding the Minimum and Maximum][1491] | Array, Sorting | ![][easy] | |
3435
| **1498** | [Number of Subsequences That Satisfy the Given Sum Condition][1498] | Array, Two Pointer, Binary Search, Sorting | ![][medium] | |
3536
| **1537** | [Get the Maximum Score][1537] | Array, Two Pointer, Dynamic Programming, Greedy | ![][hard] | |
3637

@@ -80,6 +81,7 @@
8081
| **0075** | [Sort Colors][75] | Array, Two Pointers, Sorting | ![][medium] | |
8182
| **0506** | [Relative Ranks][506] | Array, Sorting, Heap | ![][easy] | |
8283
| **0888** | [Fair Candy Swap][888] | Array, Hash Table, Binary Search, Sorting | ![][easy] | |
84+
| **1491** | [Average Salary Excluding the Minimum and Maximum][1491] | Array, Sorting | ![][easy] | |
8385
| **1498** | [Number of Subsequences That Satisfy the Given Sum Condition][1498] | Array, Two Pointer, Binary Search, Sorting | ![][medium] | |
8486

8587
## Depth-First Search
@@ -611,6 +613,7 @@
611613
[1232]: ./src/1201-1300/1232%20-%20Check%20If%20It%20Is%20a%20Straight%20Line/
612614
[1461]: ./src/1401-1500/1461%20-%20Check%20If%20a%20String%20Contains%20All%20Binary%20Codes%20of%20Size%20K/
613615
[1480]: ./src/1401-1500/1480%20-%20Running%20Sum%20of%201d%20Array/
616+
[1491]: ./src/1401-1500/1491%20-%20Average%20Salary%20Excluding%20the%20Minimum%20and%20Maximum%20Salary/
614617
[1498]: ./src/1401-1500/1498%20-%20Number%20of%20Subsequences%20That%20Satisfy%20the%20Given%20Sum%20Condition/
615618
[1537]: ./src/1501-1600/1537%20-%20Get%20the%20Maximum%20Score/
616619
[2236]: ./src/2201-2300/2236%20-%20Root%20Equals%20Sum%20of%20Children/

src/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
| **1232** | [Check If It Is a Straight Line][1232] | Array, Math, Geometry | ![][easy] | |
5252
| **1461** | [Check If a String Contains All Binary Codes of Size K][1461] | String, Hash Table, Bit Manipulation | ![][medium] | |
5353
| **1480** | [Running Sum of 1d Array][1480] | Array, Prefix Sum | ![][easy] | |
54+
| **1491** | [Average Salary Excluding the Minimum and Maximum][1491] | Array, Sorting | ![][easy] | |
5455
| **1498** | [Number of Subsequences That Satisfy the Given Sum Condition][1498] | Array, Two Pointer, Binary Search, Sorting | ![][medium] | |
5556
| **1537** | [Get the Maximum Score][1537] | Array, Two Pointer, Dynamic Programming, Greedy | ![][hard] | |
5657
| **2236** | [Root Equal to Sum of Children][2236] | Tree, Binary Tree | ![][easy] | |
@@ -97,6 +98,7 @@
9798
[1232]: ./1201-1300/1232%20-%20Check%20If%20It%20Is%20a%20Straight%20Line/
9899
[1461]: ./1401-1500/1461%20-%20Check%20If%20a%20String%20Contains%20All%20Binary%20Codes%20of%20Size%20K/
99100
[1480]: ./1401-1500/1480%20-%20Running%20Sum%20of%201d%20Array/
101+
[1491]: ./1401-1500/1491%20-%20Average%20Salary%20Excluding%20the%20Minimum%20and%20Maximum%20Salary/
100102
[1498]: ./1401-1500/1498%20-%20Number%20of%20Subsequences%20That%20Satisfy%20the%20Given%20Sum%20Condition/
101103
[1537]: ./1501-1600/1537%20-%20Get%20the%20Maximum%20Score/
102104
[2236]: ./2201-2300/2236%20-%20Root%20Equals%20Sum%20of%20Children/

0 commit comments

Comments
 (0)