Skip to content

Instantly share code, notes, and snippets.

View prasath95's full-sized avatar
🏠
Working from home

Prasath prasath95

🏠
Working from home
View GitHub Profile
@prasath95
prasath95 / food_order.json
Created June 18, 2022 18:00
Programming make sense food order template
{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "PHONE_NUMBER",
"type": "template",
"template": {
"name": "TEMPLATE_NAME",
"language": {
"code": "LANGUAGE_AND_LOCALE_CODE"
},
{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "PHONE_NUMBER",
"type": "template",
"template": {
"name": "TEMPLATE_NAME",
"language": {
"code": "LANGUAGE_AND_LOCALE_CODE"
},
public class LinkedList {
Node headNode;
/*
* show/Display
* */
public void show(){
//1.1
Node n=headNode;
//1.2
public class LinkedList {
Node headNode;
/*
* insert
* */
public void insert(int value){
Node newNode=new Node();
newNode.value=value;
/*
public class LinkedList {
Node headNode;
/*
* insert method
* @value - integer
* */
public void insert(int value){
Node newNode=new Node();
public class LinkedList {
Node headNode;
/*
* insert method
* @value - integer
* */
public void insert(int value){
Node newNode=new Node();
public class LinkedList {
Node headNode;
/*
* insert method
* @value - integer
* */
public void insert(int value){
Node newNode=new Node();
}
public class LinkedList {
Node headNode;
/*
* insert method
* @value - integer
* */
public void insert(int value){
}
public class LinkedList {
Node headNode;
/*
* insert
* */
public void insert(int value){
Node newNode=new Node();
newNode.value=value;
/*
public class LinkedList {
Node head;
}