An Active Directory pwn collection written in shell script
-
Updated
Dec 22, 2025 - Python
An Active Directory pwn collection written in shell script
🔌 Connect Termux to your local ADB host with ADBash, launching a simple Bash session that requires minimal setup and no root access.
This includes various algorithm paradigms and data structures in C++
StaySpace Accommodation System: A project aimed at providing personalized accommodation recommendations within a budget using the Knapsack problem and dynamic programming.
Essential software engineering topics, including Data Structures & Algorithms, Database Management, Operating Systems, Networking, System Design, Linux, OOPS, Development, and Communication Skills.
Classification, ADSA and Text Summarisation based project for BridgeI2I Task at Inter IIT 2021 Competition. Silver Medalists.
Advance Data Structure and Algorithms
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}
This repository contains my ADSA assignments.
//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}
Assignments for CS6013 Advanced Data Structures and Algorithms @ IIT Hyderabad
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}
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."