Skip to content

Commit d7d56fb

Browse files
committed
fix: code style
1 parent f076b5a commit d7d56fb

File tree

1 file changed

+1
-1
lines changed
  • solution/3300-3399/3335.Total Characters in String After Transformations I

1 file changed

+1
-1
lines changed

solution/3300-3399/3335.Total Characters in String After Transformations I/Solution.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class Solution {
33
int lengthAfterTransformations(string s, int t) {
44
const int mod = 1e9 + 7;
55
vector<vector<int>> f(t + 1, vector<int>(26, 0));
6-
6+
77
for (char c : s) {
88
f[0][c - 'a']++;
99
}

0 commit comments

Comments
 (0)