An Active Directory pwn collection written in shell script
-
Updated
Jan 22, 2026 - Python
An Active Directory pwn collection written in shell script
Essential software engineering topics, including Data Structures & Algorithms, Database Management, Operating Systems, Networking, System Design, Linux, OOPS, Development, and Communication Skills.
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++
//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}
Classification, ADSA and Text Summarisation based project for BridgeI2I Task at Inter IIT 2021 Competition. Silver Medalists.
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}
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}
This repository contains my ADSA assignments.
Assignments for CS6013 Advanced Data Structures and Algorithms @ IIT Hyderabad
Advance Data Structure and Algorithms
To associate your repository with the adsa topic, visit your repo's landing page and select "manage topics."