Skip to content

Instantly share code, notes, and snippets.

View dbc2201's full-sized avatar
💻
I may be slow to respond.

Divyansh Bhardwaj dbc2201

💻
I may be slow to respond.
View GitHub Profile
Please write your full name and university roll number in the comments like this
Divyansh Bhardwaj, 191500123
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Runnersup {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int zz=sc.nextInt();
sc.nextLine();
@dbc2201
dbc2201 / FactorialCalculator.java
Last active February 15, 2024 10:17
for insanely large numbers
/*
* Created by IntelliJ IDEA Ultimate, 2020
* User: dbc2201
* Date: 16/01/20
* Time: 8:52 AM
*/
package recursion;
import java.math.BigInteger;
@dbc2201
dbc2201 / lab03.md
Last active August 27, 2019 20:57
Please complete the following programs in **`Java`** and confirm it with your respective faculty. You are free to use any IDE of your choice, writing the program's source code in a plain notepad program in also acceptable.

GLA University, 2019

BCSC0002: Object-Oriented Programming

Lab 03

Programming Exercises

End Semester Exam Syllabus for MCA4044 Mobile Application Development

  • Introduction and need for Mobile Application Development
  • Mobility Concept
  • Mobile Structure and characteristics
  • Mobility Landscape
  • Mobile Platforms
  • Mobile Application Development (Principles & Uses)
  • Overview of Android Platform
  • UI in Android
@dbc2201
dbc2201 / ListADT.java
Created January 18, 2019 04:47
code for List ADT in class 2E List is for primitive integers
package list;
import java.util.Arrays;
public class ListADT
{
int[] list = new int[10];
int bottom = -1;
void insert(int value)
@dbc2201
dbc2201 / Faltoo.java
Created January 16, 2019 06:16
Code for List ADT in class 2F
package faltoo;
import java.util.Arrays;
public class Faltoo
{
int[] list = new int[10];
public static void main(String[] args)
@dbc2201
dbc2201 / Stack.java
Created January 16, 2019 04:48
Code for Stack ADT in class Section 2G
package stack;
import java.util.Arrays;
public class Stack
{
int topOfStack = -1;
int[] stack = new int[10];
int size = stack.length;
@dbc2201
dbc2201 / DemoList.java
Created January 16, 2019 04:07
Code for List ADT in class section 2G
package list;
import java.util.Arrays;
public class DemoList
{
int[] list = new int[10];
public static void main(String[] args)
{
@dbc2201
dbc2201 / DemoList.java
Created January 15, 2019 04:23
Code for List ADT in class
package list;
public class DemoList
{
int[] list = new int[10];
public static void main(String[] args)
{
DemoList list1 = new DemoList();