Skip to content

Instantly share code, notes, and snippets.

View hygull's full-sized avatar
😃
Enjoying work at AIPALETTE & in home. Programming is there as my best friend.

Rishikesh Agrawani hygull

😃
Enjoying work at AIPALETTE & in home. Programming is there as my best friend.
View GitHub Profile
@hygull
hygull / Preorder order traversal in BT(Non Recursive implementation using Stack).go
Last active December 17, 2016 09:40
Preorder order traversal in BT(Non Recursive implementation using Stack) created by hygull - https://repl.it/EsYo/0
/*
{ "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"
@hygull
hygull / Extracting structure's information using reflect package.go
Created December 17, 2016 11:40
Extracting structure's information using reflect package created by hygull - https://repl.it/Es0e/1
/*
{
"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
@hygull
hygull / Inorder order traversal in BT (Non Recursive implementation using Stack).go
Last active December 18, 2016 13:31
Inorder order traversal in BT (Non Recursive implementation using Stack) created by hygull - https://repl.it/Esoh/1
/*
{ "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"
@hygull
hygull / To get sum of all the digits in positive numbers.go
Last active December 19, 2016 17:25
To get sum of all the digits in positive numbers created by hygull - https://repl.it/Et3H/3
/*
{
"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
@hygull
hygull / Matrix multiplication in Golang(2 matrices of order 3x3).go
Last active October 23, 2021 21:23
Matrix multiplication in Golang(2 matrices of order 3x3) created by hygull - https://repl.it/Et8I/2
/*
{
"date_of_creation" => "19 Dec 2016, Mon",
"aim_of_program" => "Matrix multiplication in Golang",
"coded_by" => "Rishikesh Agrawani",
"Go_version" => "1.7",
}
*/
package main
@hygull
hygull / To display the source code of executing C program.c
Last active December 20, 2016 09:41
To display the source code of executing C program created by hygull - https://repl.it/EuAM/3
// {
// "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(){
@hygull
hygull / 4 ways of creating slice, printing their length and capacity.go
Last active December 21, 2016 07:29
4 ways of creating slice, printing their length and capacity created by hygull - https://repl.it/Euhl/4
/*
{ "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"
@hygull
hygull / Postorder order traversal of BT(Non Recursive implementation using Stack).go
Last active December 22, 2016 02:44
Postorder order traversal of BT(Non Recursive implementation using Stack) created by hygull - https://repl.it/EvUB/1
/*
{ "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
@hygull
hygull / Using switch cases.go
Created December 24, 2016 12:08
Using switch cases created by hygull - https://repl.it/EwFR/14
/*
{
"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
@hygull
hygull / To use structures with interfaces to organize informations.go
Last active December 25, 2016 09:43
To use structures with interfaces to organize informations created by hygull - https://repl.it/EwbO/1
/*
{
"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