Skip to content

Instantly share code, notes, and snippets.

View Utkarsh299-tech's full-sized avatar
🏠
Working from home

Utkarsh Singh Utkarsh299-tech

🏠
Working from home
View GitHub Profile
@Utkarsh299-tech
Utkarsh299-tech / DoublyLinkedList.c
Created May 5, 2021 04:25 — forked from mycodeschool/DoublyLinkedList.c
Doubly Linked List implementation in C
/* Doubly Linked List implementation */
#include<stdio.h>
#include<stdlib.h>
struct Node {
int data;
struct Node* next;
struct Node* prev;
};
@Utkarsh299-tech
Utkarsh299-tech / Programming, Data Structures And Algorithms Using Python Week 1
Last active September 27, 2020 10:09
NPTEL- Programming, Data Structures And Algorithms Using Python Week 1
#Week 1 QUIZ:
1) What does h(19685) return for the following function definition?
def h(x):
(d,n) = (1,0)
while d <= x:
(d,n) = (d*3,n+1)
return(n)
ANS: 10
@Utkarsh299-tech
Utkarsh299-tech / PY0101EN-3-3-Functions.ipynb
Created July 23, 2020 14:54
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Utkarsh299-tech
Utkarsh299-tech / PY0101EN-3-2-Loops.ipynb
Created July 17, 2020 13:39
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Utkarsh299-tech
Utkarsh299-tech / PY0101EN-3-1-Conditions.ipynb
Created July 10, 2020 10:56
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Utkarsh299-tech
Utkarsh299-tech / PY0101EN-2-4-Dictionaries.ipynb
Created July 9, 2020 20:18
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Utkarsh299-tech
Utkarsh299-tech / PY0101EN-2-3-Sets.ipynb
Created July 9, 2020 19:49
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Utkarsh299-tech
Utkarsh299-tech / PY0101EN-2-2-Lists.ipynb
Created July 9, 2020 18:37
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Utkarsh299-tech
Utkarsh299-tech / PY0101EN-2-1-Tuples.ipynb
Created July 9, 2020 18:04
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.