Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Assg4/ASSG4_B160118CS_NEERAJA_1.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include<stdio.h>
#include<bits/stdc++.h>
#include<stdlib.h>
long hash[10000];
char ch;
Expand Down
17 changes: 17 additions & 0 deletions Assg4/missnuminarr.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include<iostream>
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
int arr[n];
for(int i=0;i<n;i++)
cin>>arr[i];
}
return 0;
}