Skip to content

Commit d8b011f

Browse files
AE-Hertzidoocs
authored andcommitted
style: format code and docs with prettier
1 parent 41f2c25 commit d8b011f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solution/0600-0699/0664.Strange Printer/Solution.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @param {string} s
33
* @return {number}
44
*/
5-
var strangePrinter = function(s) {
5+
var strangePrinter = function (s) {
66
const n = s.length;
77
const f = new Array(n).fill(0).map(() => new Array(n).fill(1 << 30));
88
for (let i = n - 1; i >= 0; --i) {

0 commit comments

Comments
 (0)