Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/skygragon/leetcode-cli
/ padLeft
Function
padLeft
lib/sprintf.js:9–12 ·
view source on GitHub ↗
(s, n, c)
Source
from the content-addressed store, hash-verified
7
}
8
9
function
padLeft(s, n, c) {
10
let
k = Math.max(0, n - len(s));
11
return
c.repeat(k) + s;
12
}
13
14
function
padRight(s, n , c) {
15
let
k = Math.max(0, n - len(s));
Callers
1
tsprintf
Function · 0.85
Calls
1
len
Function · 0.85
Tested by
no test coverage detected