Widget HTML Atas

Showing posts from 2021
Tree Traversing (Pre-Order, In Order, Post-Order)

Tree Traversing (Pre-Order, In Order, Post-Order)

# traversing the Tree def PreOrderTraversal ( root ): if root is not None : print ( root . data ) …
Code Blocks .exe .o file remover

Code Blocks .exe .o file remover

Just copy these code and save as .py extension Then execute the python program. import sys import os from os import …
Calander

Calander

Problem Set of ICPC 2019 -(ICPC ASIA WEST CONTINENT FINAL CONTEST 2019)

Problem Set of ICPC 2019 -(ICPC ASIA WEST CONTINENT FINAL CONTEST 2019)

Problem set of ICPC 2019
Problem Set of NCPC 2020

Problem Set of NCPC 2020

Problem Set of MIST NCPC 2020
MOCK OF ICPC DHAKA REGIONAL 2020 ONLINE PRELIMINARY

MOCK OF ICPC DHAKA REGIONAL 2020 ONLINE PRELIMINARY

MOCK OF ICPC 2020 A. Almost Forgot to Welcome Score: 1 CPU: 1s Memory: 1500MB ICPC Dhaka Regional is the biggest progra…
Solution of ICPC 2020 (ICPC DHAKA REGIONAL 2020 ONLINE PRELIMINARY CONTEST )

Solution of ICPC 2020 (ICPC DHAKA REGIONAL 2020 ONLINE PRELIMINARY CONTEST )

Editorial of ICPC 2020
Problem Set of ICPC 2020  (ICPC DHAKA REGIONAL 2020 ONLINE PRELIMINARY CONTEST )

Problem Set of ICPC 2020 (ICPC DHAKA REGIONAL 2020 ONLINE PRELIMINARY CONTEST )

Weather Observation Station 1- HackerRank SQL

Query a list of CITY and STATE from the STATION table. The STATION table is described as follows: where LAT_N …

Japanese Cities' Names- HackerRank SQL

Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN . The CITY table is …

Japanese Cities' Attributes - HackerRank SQL

Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN . The CITY table …

Select By ID- HackerRank SQL

Query all columns for a city in CITY with the ID 1661 . The CITY table is described as follows: xxxxxxxxxx 8   …