Created
October 23, 2019 19:46
-
-
Save randomwangran/ac1bd13291cbb2b15fd41f2d92d342b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; m10 | |
| → 0 1 2 3 4 5 6 7 8 9 10 | |
| ;; m5 10 | |
| → 5 6 7 8 9 10 | |
| ;; m5,10 | |
| → 5,6,7,8,9,10 | |
| ;; m5 10*xx | |
| → 25 36 49 64 81 100 | |
| ;; m5 10*xx%x | |
| → 19 24 31 40 51 64 | |
| ;; m5 10*xx|0x%x | |
| → 0x19 0x24 0x31 0x40 0x51 0x64 | |
| ;; m25+x?a%c | |
| → 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 | |
| ;; m25+x?A%c | |
| → 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 | |
| ;; m97,122(string x) | |
| → 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 | |
| ;; m97,122stringxx | |
| → aa,bb,cc,dd,ee,ff,gg,hh,ii,jj,kk,ll,mm,nn,oo,pp,qq,rr,ss,tt,uu,vv,ww,xx,yy,zz | |
| ;; m97,120stringxupcasex | |
| → aA,bB,cC,dD,eE,fF,gG,hH,iI,jJ,kK,lL,mM,nN,oO,pP,qQ,rR,sS,tT,uU,vV,wW,xX | |
| ;; m97,120stringxupcasex)x | |
| → aAa,bBb,cCc,dDd,eEe,fFf,gGg,hHh,iIi,jJj,kKk,lLl,mMm,nNn,oOo,pPp,qQq,rRr,sSs,tTt,uUu,vVv,wWw,xXx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment