An Active Directory pwn collection written in shell script
-
Updated
Nov 26, 2023 - Shell
An Active Directory pwn collection written in shell script
StaySpace Accommodation System: A project aimed at providing personalized accommodation recommendations within a budget using the Knapsack problem and dynamic programming.
This includes various algorithm paradigms and data structures in C++
This repository contains my ADSA assignments.
given an array of n numbers of 0's & 1's. sort the array. input a[]= {1,1,0,1,0,0,0,1,1,1}, expected output a[]= {0,0,0,0,1,1,1,1,1,1}
Advance Data Structure and Algorithms
//sort the array which contains 0,1,2. input a[10]={2,1,0,1,2,1,1,0,0,1}, expected output after sorting a[10] = {0,0,0,1,1,1,1,1,2,2}
given an array of n integers. sort the array with respect to frequency of elements, higher to lower frequency. input a[]= {7,3,3,3,7,3,2,2,3,7}, expected output after sorting (higher to lower) a[]= {3,3,3,3,3,7,7,7,2,2} ; (lower to higher) a[]= {2,2,7,7,7,3,3,3,3,3}
Assignments for CS6013 Advanced Data Structures and Algorithms @ IIT Hyderabad
Classification, ADSA and Text Summarisation based project for BridgeI2I Task at Inter IIT 2021 Competition. Silver Medalists.
Add a description, image, and links to the adsa topic page so that developers can more easily learn about it.
To associate your repository with the adsa topic, visit your repo's landing page and select "manage topics."