Skip to content

Instantly share code, notes, and snippets.

View omi-akif's full-sized avatar
☄️
A comet in space trying to find a place to land

Khandaker Akif Razzak omi-akif

☄️
A comet in space trying to find a place to land
View GitHub Profile
import java.util.Scanner;
public class BinarySearchTreeAssignment {
static class TreeNode {
int data;
TreeNode left;
TreeNode right;
@omi-akif
omi-akif / Chat_Details.sql
Last active January 16, 2023 07:55
This code provides a way to get the hourly session chat data
--odps sql
--********************************************************************--
--author:Razzak, Khandaker
--create time:2023-01-16 15:23:17
--Created SQL table for the Chat Data.
--********************************************************************--
SELECT chat_hour,
@omi-akif
omi-akif / variable_array.cpp
Created November 20, 2020 08:59
A cpp program to create variable arrays and query them.
#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: