Printable ASCII characters
From a blank input, print all 95 printing ASCII characters one per line, from space to tilde.
Start file
End file
! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~
View Diff
1c1,95 < --- > > ! > " > # > $ > % > & > ' > ( > ) > * > + > , > - > . > / > 0 > 1 > 2 > 3 > 4 > 5 > 6 > 7 > 8 > 9 > : > ; > < > = > > > ? > @ > A > B > C > D > E > F > G > H > I > J > K > L > M > N > O > P > Q > R > S > T > U > V > W > X > Y > Z > [ > \ > ] > ^ > _ > ` > a > b > c > d > e > f > g > h > i > j > k > l > m > n > o > p > q > r > s > t > u > v > w > x > y > z > { > | > } > ~
Solutions
The best way to learn is to practice. Below, you will find some of the solutions other golfers have entered. To unlock higher ranked solutions, submit your own entry which does as well or better than the solutions you can currently see - climb the ladder!
Check out these helpful resources to improve your Vim skills... Game on.
Unlock 42 remaining solutions by signing in and submitting your own entry
#43 Tenor Biel / @TenorB - Score: 50 - 06/10/13 @ 01:33
i32<Esc>qqYp<C-A>q93@q:%s/.\+/\=nr2chae<BS>r(submatch(0))/<CR>ZZ
@TenorB: CRAP! I messed up the spelling of char, and now I'm paying for it by 2 points!
1 comment
#44 Oliver Caldwell / @OliverCaldwell - Score: 50 - 06/24/14 @ 18:08
i32<Esc>qqyyp<C-A>q93@q:%s/\d\+/\=nr2char(submatch(0))/<CR>ZZ
0 comments