Skip to content

Commit 9e27586

Browse files
committed
added 2427. Number of Common Factors
Signed-off-by: rajput-hemant <[email protected]>
1 parent f7efba7 commit 9e27586

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

TOPICWISE.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@
190190
| **0509** | [Fibonacci Number][509] | Math, Recursion, DP, Memoization | ![][easy] | |
191191
| **1232** | [Check If It Is a Straight Line][1232] | Array, Math, Geometry | ![][easy] | |
192192
| **1630** | [Count Odd Numbers in an Interval Range][1630] | Math | ![][easy] | |
193+
| **2427** | [Number of Common Factors][2427] | Math, Enumeration, Number Theory | ![][easy] | |
193194

194195
<!---------------------------------{ Solution Table }-------------------------->
195196

@@ -598,8 +599,9 @@
598599

599600
## Enumeration
600601

601-
| # | Solution | Tags | Difficulty | Remark |
602-
| :-: | :------: | :--: | :--------: | :----: |
602+
| # | Solution | Tags | Difficulty | Remark |
603+
| :------: | :------------------------------: | :------------------------------: | :--------: | :----: |
604+
| **2427** | [Number of Common Factors][2427] | Math, Enumeration, Number Theory | ![][easy] | |
603605

604606
<!---------------------------------{ Solution Table }-------------------------->
605607

@@ -707,9 +709,10 @@
707709

708710
## Number Theory
709711

710-
| # | Solution | Tags | Difficulty | Remark |
711-
| :------: | :---------------: | :-----------------------------: | :--------: | :----: |
712-
| **0258** | [Add Digits][258] | Math, Simulation, Number Theory | ![][easy] | |
712+
| # | Solution | Tags | Difficulty | Remark |
713+
| :------: | :------------------------------: | :------------------------------: | :--------: | :----: |
714+
| **0258** | [Add Digits][258] | Math, Simulation, Number Theory | ![][easy] | |
715+
| **2427** | [Number of Common Factors][2427] | Math, Enumeration, Number Theory | ![][easy] | |
713716

714717
<!---------------------------------{ Solution Table }-------------------------->
715718

@@ -1023,6 +1026,7 @@
10231026
[1957]: ./src/1901-2000/1957%20-%20Delete%20Characters%20to%20Make%20Fancy%20String/
10241027
[2176]: ./src/2101-2200/2176%20-%20Count%20Equal%20and%20Divisible%20Pairs%20in%20an%20Array/
10251028
[2236]: ./src/2201-2300/2236%20-%20Root%20Equals%20Sum%20of%20Children/
1029+
[2427]: ./src/2401-2500/2427%20-%20Number%20of%20Common%20Factors/
10261030

10271031
<!----------------------------------{ Labels }--------------------------------->
10281032

src/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@
152152
| **1957** | [Delete Characters to Make Fancy String][1957] | String | ![][easy] | |
153153
| **2176** | [Count Equal and Divisible Pairs in an Array][2176] | Array | ![][easy] | |
154154
| **2236** | [Root Equal to Sum of Children][2236] | Tree, Binary Tree | ![][easy] | |
155+
| **2427** | [Number of Common Factors][2427] | Math, Enumeration, Number Theory | ![][easy] | |
155156

156157
</div>
157158
<!---------------------------------{ Path Reference }-------------------------->
@@ -301,6 +302,7 @@
301302
[1957]: ./1901-2000/1957%20-%20Delete%20Characters%20to%20Make%20Fancy%20String/
302303
[2176]: ./2101-2200/2176%20-%20Count%20Equal%20and%20Divisible%20Pairs%20in%20an%20Array/
303304
[2236]: ./2201-2300/2236%20-%20Root%20Equals%20Sum%20of%20Children/
305+
[2427]: ./2401-2500/2427%20-%20Number%20of%20Common%20Factors/
304306

305307
<!----------------------------------{ Labels }--------------------------------->
306308

0 commit comments

Comments
 (0)