Skip to content

Instantly share code, notes, and snippets.

View Dbhardwaj99's full-sized avatar
🎯
Focusing

Divyansh Bhardwaj Dbhardwaj99

🎯
Focusing
View GitHub Profile
import socket
# Create a socket object
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# Get the local machine name
host = socket.gethostname()
# Set the port number
port = 12345
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.neighbors import KNeighborsClassifier
# Load the data for the recommendation system
data = pd.read_csv("posts.csv")
# Select the relevant columns for the ML model
X = data[["hashtags", "time_spent"]]
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# Question 1
list1 = []
for i in range(20):
if i % 2 == 0 or i % 4 == 0:
list1.append(i)
# Question 2
def square(x):
return x ** 2
// Linked list operations in C
#include <stdio.h>
#include <stdlib.h>
// Create a node
struct Node {
int data;
struct Node* next;
};
#include <iostream>
using namespace std;
struct cricket
{
char player_name[11];
char team[2];
float bating_avg;
}
a[50];
#include <stdio.h>
int main()
{
int i,num,rem,count;
int ar[50];
printf("Enter the number:\n");
scanf("%d",&num);
count = 0;
i = 0;
#include<stdio.h>
void main()
{
int i,j,temp,p,n;
int ar[50];
printf("Enter the size of an array");
scanf("%d",&n);
printf("Enter the array elements: ");
for(i=0;i<n;++i)
{
#include <stdio.h>
int main() {
char s1[100];
scanf("%[^\n]%*c", s1);
char s2[100];
scanf("%[^\n]%*c", s2);
int length, j;
length = 0;
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
EXPOSE 6200
EXPOSE 5009
LABEL ranchimall="ranchimallfze@gmail.com"
# CMD { "echo", "Ranchi Mall" }
# for apt to be noninteractive