Skip to content

Instantly share code, notes, and snippets.

View Irene-123's full-sized avatar
🎯
Looking for a hackathon partner in Bengaluru

kirti purohit Irene-123

🎯
Looking for a hackathon partner in Bengaluru
View GitHub Profile
Number date
123456 2021-01-16
123456 2021-01-18
98765 2021-01-19
98765 2021-02-01
123456 2021-02-02
123456 2021-02-03
123456 2021-02-09
123456 2021-02-11
7645323 2021-02-13
Number date
123456 2021-01-16 to 2021-01-18
98765 2021-01-19 to 2021-02-01
123456 2021-02-02 to 2021-02-11
7645323 2021-02-13 to 2021-02-17
Call date time
0 2021-07-06 18:52:30 18:52:30
1 2021-07-06 18:52:34 18:52:34
2 2021-07-06 18:52:35 18:52:35
3 2021-07-06 18:52:35 18:52:35
4 2021-07-06 18:52:59 18:52:59
5 2021-07-06 18:53:00 18:53:00
6 2021-07-06 18:53:01 18:53:01
7 2021-07-06 18:53:02 18:53:02
8 2021-07-06 18:53:02 18:53:02
Calling (A) Party Number Called (B) Party Number Call date Duration ( in second) IMEI IMSI First roaming Circle Network ID Call Type Cell Id Weekday Mon_Year EndDate
10 8910698915 1991 2021-07-06 18:53:07 39.0 '860672053389540' '405873067713386' KO OUT 4058730041617 Tuesday Jul-2021 2021-07-06 19:15:46
13 8910698915 1299 2021-08-06 19:11:10 1.0 '862434059120910' '405873067713386' KO OUT 405873004161A Friday Aug-2021 2021-08-06 19:15:11
We can make this file beautiful and searchable if this error is corrected: It looks like row 8 should actually have 13 columns, instead of 4. in line 7.
,Calling (A) Party Number,Called (B) Party Number,Call date,Duration ( in second),IMEI,IMSI,First roaming Circle Network ID,Call Type,Cell Id,Weekday,Mon_Year,EndDate
10,8910698915,1991,2021-07-06 18:53:07,39.0,'860672053389540','405873067713386',KO,OUT,4058730041617,Tuesday,Jul-2021,2021-07-06 18:53:46
13,8910698915,1299,2021-08-06 09:51:10,1.0,'862434059120910','405873067713386',KO,OUT,405873004161A,Friday,Aug-2021,2021-08-06 09:51:11
17,8910698915,1299,2021-08-06 09:51:20,1.0,'862434059120910','405873067713386',KO,OUT,405873004161A,Friday,Aug-2021,2021-08-06 09:51:21
18,8910698915,1299,2021-08-06 09:51:43,1.0,'862434059120910','405873067713386',KO,OUT,4058730041617,Friday,Aug-2021,2021-08-06 09:51:44
21,8910698915,1299,2021-08-06 09:52:02,1.0,'862434059120910','405873067713386',KO,OUT,4058730041624,Friday,Aug-2021,2021-08-06 09:52:03
22,8910698915,1299,2021-08-06 09:52:37,8.0,'862434059120910','405873067713386',KO,OUT,405873004161A,Friday,Aug-2021,2021-08-06 09:52:45
33,1166041100,8910698915,2021-08-06 10
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="{{ url_for('static', filename='images/favicon.ico') }}">
@Irene-123
Irene-123 / monk.py
Created January 9, 2021 02:24
MOnk and search //Error filled
n=int(input())
arr=list(map(int,input().split()))[:n]
arr.sort
q=int(input())
ques=[input().split() for i in range(q)]
for que in ques:
count=0
if que[0]=='0':
@Irene-123
Irene-123 / 2D.C
Created January 3, 2021 14:34
Dynamically allocating 2D array
#include<stdio.h>
#include<stdlib.h>
int main(){
int **arr;
int rows,cols;
printf("\nEnter the number of rows and columns respectively:" );
scanf("%d %d",&rows,&cols );
@Irene-123
Irene-123 / 1D.C
Created January 3, 2021 13:51
Dynamically allocating space for a 1D array in C
#include<stdlib.h>
#include<stdio.h>
int main(){
int n;
int *arr;
printf("\nEnter the number of elements in the array:" );
scanf("%d",&n);
arr=(int*)malloc(n*sizeof(n));
if (arr==NULL){