Eliminating a tiny OSS dependency
Eliminating a tiny OSS dependency that can be actually implemented in a few lines of code
Description
Samples
def leftpad(string, length, char = ' ')
string.rjust(length, String(char))
endExercise
Checklist for Further Learning
Last updated