Skip to content

Instantly share code, notes, and snippets.

View Praful932's full-sized avatar
💜
Learning

Praful Praful932

💜
Learning
View GitHub Profile
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main()
{
int k=0,freq=0,pos=0,c=0;
char no[10000];
char out[20];
scanf("%s",no);
// Implements a dictionary's functionality
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include "dictionary.h"
// Copies a BMP file
#include <stdio.h>
#include <stdlib.h>
#include "bmp.h"
int main(int argc, char *argv[])
{
// ensure proper usage
//greedy least no of coins for change
#include<stdio.h>
#include<cs50.h>
#include<math.h>
int main(void)
{
float n;
int coin=0;
do
{
@Praful932
Praful932 / PY0101EN-1-1-Types.ipynb
Created July 4, 2019 03:33
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#include <stdio.h>
void accept(int [][10],int ,int);
void acceptp(int )
void display(int [][10],int,int);
void add(int [][10],int [][10],int,int,int,int);
void transpose(int[][10],int,int);
void multi(int [][10],int [][10],int m,int n,int x,int y);
void saddle(int [][10],int m,int n);
int minrow(int a[][10],int ccol,int n,int crow);
int maxcol(int a[][10],int crow,int m,int ccol);
Skip to content
Search or jump to…
Pull requests
Issues
Marketplace
Explore
@Praful932
{"lastUpload":"2021-12-22T17:15:06.523Z","extensionVersion":"v3.4.3"}
pip install numpy pandas jupyter jupyter_contrib_nbextensions && jupyter contrib nbextension install --user && jupyter nbextension enable hinterland/hinterland && pip install jedi==0.17.2
@Praful932
Praful932 / regex.txt
Created July 29, 2021 06:27
Regex snippets
. - Any Character Except New Line
\d - Digit (0-9)
\D - Not a Digit (0-9)
\w - Word Character (a-z, A-Z, 0-9, _)
\W - Not a Word Character
\s - Whitespace (space, tab, newline)
\S - Not Whitespace (space, tab, newline)
\b - Word Boundary