We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d55452 commit e9a6fc0Copy full SHA for e9a6fc0
libraries/StringLib.java
@@ -51,7 +51,7 @@ public static String sumStringsWithSeparator(List lst, String sep)
51
public static String padLeftWithInto(String s,String c,int n)
52
{ String result = "";
53
54
- for (int i = 1; i < n - s.length(); i++)
+ for (int i = 0; i < n - s.length(); i++)
55
{
56
result = result + c;
57
}
0 commit comments