Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update README.md
  • Loading branch information
SrishtiSinha2003 authored Jun 23, 2025
commit 45f6746decf432583c8d67190c9993e7efc4bfeb
4 changes: 3 additions & 1 deletion 2081. Sum of k-Mirror Numbers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ For example:

Given the base k and the number n, return the sum of the n smallest k-mirror numbers.

# Example 1
### Example 1
```
Input: k = 2, n = 5
Output: 25
Explanation:
Expand All @@ -25,4 +26,5 @@ The 5 smallest 2-mirror numbers and their base-2 representations are:
9 1001

Sum = 1 + 3 + 5 + 7 + 9 = 25.
```