05AB1E, (削除) 13 (削除ここまで) 12 bytes
,εDlAsk×ばつ}ζ»,
Explanation
, # print input
ε } # apply to each char in input
D # duplicate
l # convert to lower case
Ask # get index of current char in the lower case alphabet
×ばつ # repeat the char that many times
ζ # transpose with space as filler
», # join on newlines and print
05AB1E, (削除) 13 (削除ここまで) 12 bytes
,εDlAsk×ばつ}ζ»,
Explanation
, # print input
ε } # apply to each char in input
D # duplicate
l # convert to lower case
Ask # get index of current char in the lower case alphabet
×ばつ # repeat the char that many times
ζ # transpose with space as filler
», # join on newlines and print