Skip to content

Commit cd0ae9f

Browse files
Update 3106- Lexicographically Smallest String After Operations With Constraint.md
1 parent f98a9ef commit cd0ae9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsa-solutions/lc-solutions/3100-3199/3106- Lexicographically Smallest String After Operations With Constraint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The function uses an outer for loop to iterate through each character i in the o
6969

7070
## 3. Finding the Best Replacement Character:
7171

72-
An inner for loop iterates through all lowercase letters (char c = 'a'; c <= 'z'; c++).
72+
An inner for loop iterates through all lowercase letters `char c = 'a'; c <= 'z'; c++`.
7373

7474
`Inside the inner loop:`
7575
- **distance(s.charAt(i), c):**

0 commit comments

Comments
 (0)