Teknikal-Notes

MathHoang: "A place to keep notes!"

Pages

▼

Learning new thing fast strategies

›
Skill and Time  are two essentials for learning anything new. So the author suggests us to dedicate just twenty hours to a thing which you...

BaNaNa

›
How Js pronounces Banana:  console.write("Ba" + ("B"-"a") + "a");

Insert Node into the end of list

›
struct node { int data ; struct node * next ; } ; struct node * getLastNode ( struct node * head ) ; void insertNode ( ...

Remove Node with Key

›
struct node { int data ; struct node * next ; } ; void removeNodeWithData ( struct node * * head , int removeData ) { ...

[Python] Basic Encoder/Decoder with Caesar CIpher

›
def CaesarCiper ( str_ , DeEn , key ): a_ =[] for i in str_ : if ( DeEn == "D" ): a_...
›
Home
View web version
Powered by Blogger.