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 17 2016" } | |
{ "Aim of program" => "Preorder order traversal in BT(Non Recursive implementation using Stack)" } | |
{ "Coded by" => "Rishikesh Agrawani" } | |
{ "special" => "Linked list implementation of Stack,Thought of the day"} | |
{ "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" => "17 Dec 2016, Thurs", | |
"aim_of_program" => "Extracting structure's information using reflect package", | |
"coded_by" => "Rishikesh Agrawani", | |
"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
/* | |
{ "Date of creation" => "18 Dec 17 2016" } | |
{ "Aim of program" => "Inorder order traversal in BT (Non Recursive implementation using Stack)" } | |
{ "Coded by" => "Rishikesh Agrawani" } | |
{ "special" => "Linked list implementation of Stack,Thought of the day"} | |
{ "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" => "19 Dec 2016, Mon", | |
"aim_of_program" => "To get sum of all the digits in positive numbers", | |
"coded_by" => "Rishikesh Agrawani", | |
"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
/* | |
{ | |
"date_of_creation" => "19 Dec 2016, Mon", | |
"aim_of_program" => "Matrix multiplication in Golang", | |
"coded_by" => "Rishikesh Agrawani", | |
"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" => "Tues Dec 20 2016", | |
// "aim_of_program" => "To display the source code of executing C program", | |
// "memory" => "A modified/corrected version of C program located at https://www.programiz.com/c-programming/examples/source-code-output" | |
// "coded_by" => "Rishikesh Agrawani", | |
// } | |
#include<stdio.h> | |
int 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
/* | |
{ "Date of creation" => "Wed Dec 21 2016" } | |
{ "Aim of program" => "4 ways of creating slice, printing their length and capacity" } | |
{ "Coded by" => "Rishikesh Agrawani" } | |
{ "Resource" => "https://blog.golang.org/slices"} | |
{ "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 completion" => "Sat Dec 17 2016" } | |
{ "Aim of program" => "Postorder order traversal of BT(Non Recursive implementation using Stack)" } | |
{ "Coded by" => "Rishikesh Agrawani" } | |
{ "special" => "Linked list implementation of Stack,Thought of the day, | |
Very nice experience with the implementation of Postorder traversal in Go"} | |
{ "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
/* | |
{ | |
"date_of_creation" => "24 Dec 2016, Saturday", | |
"aim_of_program" => "Using switch cases in Golang" | |
"coded_by" => "Rishikesh Agrawani", | |
"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
/* | |
{ | |
"date_of_creation" => "25 Dec 2016, Thurs", | |
"aim_of_program" => "To use structures with interfaces to organize information", | |
"coded_by" => "Rishikesh Agrawani", | |
"Go_version" => "1.7", | |
} | |
*/ | |
package main |