This file contains 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
/* | |
{ | |
"date_of_creation" => "15 Dec 2016, Thurs", | |
"aim_of_program" => "To show binary combinations according to the number of binary variables", | |
"coded_by" => "Rishikesh Agrawani", | |
"memory" => "iteration" | |
"Go_version" => "1.7", | |
} | |
*/ | |
package main |
This file contains 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
/* | |
{ | |
"created_before" => "Thu Dec 15 09:45:14 IST 2016", | |
"aim_of_program" => "To use string's Replace() function for replacing text(s) from a string", | |
"coded_by" => "Rishikesh Agrawani", | |
} | |
*/ | |
package main | |
import ( |
This file contains 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
/* | |
{ | |
"date_of_creation" => "15 Dec 2016, Thurs", | |
"aim_of_program" => "Doubly linked list(Inserting nodes at beginning and traversing in both directions)", | |
"coded_by" => "Rishikesh Agrawani", | |
"memory" => "Thought of the day, Type assertion", | |
"resources" => "{ https://tour.golang.org/methods/15 (A tour of Go : Type assertions) }, | |
{ http://stackoverflow.com/questions/14289256/cannot-convert-data-type-interface-to-type-string-need-type-assertion }", | |
"Go_version" => "1.7", | |
} |
This file contains 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
/* | |
{ | |
"date_of_creation" => "15 Dec 2016, Thurs(evening)", | |
"aim_of_program" => "Doubly linked list(Inserting nodes at end and traversing in both directions)", | |
"coded_by" => "Rishikesh Agrawani", | |
"memory" => "Thought of the day, Type assertion", | |
"resources" => "{ https://tour.golang.org/methods/15 (A tour of Go : Type assertions) }, | |
{ http://stackoverflow.com/questions/14289256/cannot-convert-data-type-interface-to-type-string-need-type-assertion }", | |
"Go_version" => "1.7", | |
} |
This file contains 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
/* | |
{ "date_of_creation" : "Sun Dec 11 2016" }, | |
{ "posted_on" : "Fri Dec 16 2016" }, | |
{ "aim_of_program" : "To create a binary tree data structure and traverse through it" }, | |
{ "coded_by" : "Rishikesh Agrawani" }, | |
{ "Go_version" : "1.7" }, | |
*/ | |
package main | |
import "fmt" |
This file contains 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
/* | |
{ | |
"date_of_creation" => "16 Dec 2016, Thurs", | |
"aim_of_program" => "To generate MD5 hashes(checksums) in 3 different ways", | |
"coded_by" => "Rishikesh Agrawani", | |
"generate_online" => "{ http://onlinemd5.com/ }, | |
{ http://www.md5.cz/ }", | |
"Go_version" => "1.7", | |
} | |
*/ |
This file contains 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
/* | |
{ | |
"date_of_creation" => "16 Dec 2016, Thurs", | |
"aim_of_program" => "To generate SHA1 hashes(checksums) in 3 different ways ", | |
"coded_by" => "Rishikesh Agrawani", | |
"generate_online" => "{ http://onlinemd5.com/ }, | |
{ http://www.md5.cz/ }", | |
"Go_version" => "1.7", | |
} | |
*/ |
This file contains 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
/* | |
{ "Date of creation" => "Fri Dec 16 2016" } | |
{ "Aim of program" => "Postorder order traversal in BT(Recursive implementation)" } | |
{ "Coded by" => "Rishikesh Agrawani" } | |
{ "Go version" => "1.7" } | |
*/ | |
package main | |
import "fmt" |
This file contains 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
/* | |
{ "Date of creation" => "Fri Dec 16 2016" } | |
{ "Aim of program" => "Inorder order traversal in BT(Recursive implementation)" } | |
{ "Coded by" => "Rishikesh Agrawani" } | |
{ "Go version" => "1.7" } | |
*/ | |
package main | |
import "fmt" |
This file contains 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
/* | |
{ "Date of creation" => "Fri Dec 16 2016" } | |
{ "Aim of program" => "Preorder order traversal in BT(Recursive implementation)" } | |
{ "Coded by" => "Rishikesh Agrawani" } | |
{ "Go version" => "1.7" } | |
*/ | |
package main | |
import "fmt" |