View gist:0afbf6cbc890ebc4c5fa392c77d1f805
pip install numpy pandas jupyter jupyter_contrib_nbextensions && jupyter contrib nbextension install --user && jupyter nbextension enable hinterland/hinterland && pip install jedi==0.17.2 |
View cloudSettings
{"lastUpload":"2020-10-05T04:41:12.805Z","extensionVersion":"v3.4.3"} |
View spelfadol.c
Skip to content | |
Search or jump to… | |
Pull requests | |
Issues | |
Marketplace | |
Explore | |
@Praful932 |
View p2.c
#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); |
View PY0101EN-1-1-Types.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View cash.c
//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 | |
{ |
View whodunit.c
// Copies a BMP file | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include "bmp.h" | |
int main(int argc, char *argv[]) | |
{ | |
// ensure proper usage |
View dictionary.c
// 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" |
View no.c
#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); |