19
Jan
Python Solution for CBC Encryption Task
#<first name>, <last name>, <Your ID> #Python 3.6 import Crypto.Cipher.AES as .....
22
Dec
Python Solution on Implement an LRU Cache
from collections import OrderedDict class LRUCache: def __init__(self, Capacity): .....
17
Nov
Python Solution for Search and Data Mining Task
lst = {"fruit":"apple","mac":"apple"} print(lst) pers = in.....
11
Nov
Python Program on TicTacToe Game
import os class Board: #Constructor should intiliaze the board to a blank state .....
04
Nov
Python Program on Hash Table
from linearProbingHash import LinearProbingHash from quadraticProbingHash import QuadraticProbingHa.....
20
Oct
Python Program on Member Class
#!/usr/bin/python3 # for windows the Shebang line is <#! python3> # Full name: # Studen.....
18
Aug
Python Homework Solution on Missile Crisis
# Missile Crisis def dice(): # Value returned is throw of dice import random &nb.....
05
Aug
Python Assignment Solution on Objects and Algorithms - Lab 4 Heap
class Heap: size = 0 arr = [] capacity = 100 def __init__(self):.....
29
Jul
Python Assignment Solution on Trigrams
import json import random import sys def build_trigrams(words): trigrams = {} split.....