This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* a stack implementation using linked list | |
* @author Anim Malvat | |
*/ | |
public class LinkedStack { | |
/** | |
* top pointer for stack | |
*/ | |
private Node top = null; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create a project | |
django-admin startproject <project-name> | |
# run the server | |
python manage.py runserver | |
# create an app | |
python manage.py startapp <app-name> | |
# make migrations |