This file contains hidden or 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
#include <iostream> | |
/* | |
1. Compile the program with using g++ compiler -> variable_array.cpp -o variable | |
2. Run the compiled file in Terminal(Ubuntu) or Command Promt(Windows) | |
3. First Line/Step -> Enter the number of variable length arrays and the number of queries. | |
Second Line/Step -> Enter the number of data entries within the variable sized arrays and then enter the numberes. | |
Third Line/Step -> Enter the index of variable array and the index of the array within the array. | |
Example: |
This file contains hidden or 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
--odps sql | |
--********************************************************************-- | |
--author:Razzak, Khandaker | |
--create time:2023-01-16 15:23:17 | |
--Created SQL table for the Chat Data. | |
--********************************************************************-- | |
SELECT chat_hour, |
This file contains hidden or 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
import java.util.Scanner; | |
public class BinarySearchTreeAssignment { | |
static class TreeNode { | |
int data; | |
TreeNode left; | |
TreeNode right; |
This file contains hidden or 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
{ | |
"meta": { | |
"file_name": "avrodict.json", | |
"file_description": "Provides Avro Dictionary in JSON. Adapted from avro-lib.js", | |
"package": "pyAvroPhonetic", | |
"license": "MIT 1.1 License", | |
"source": "https://raw.github.com/torifat/jsAvroPhonetic/master/src/avro-lib.js", | |
"original_code": "jsAvroPhonetic", | |
"initial_developer": "Rifat Nabi <[email protected]>", | |
"copyright": "Copyright (C) Omicronlab (http://www.omicronlab.com). All Rights Reserved.", |