https://github.com/jvm-coder/mini-programs
Small programs made during free time
https://github.com/jvm-coder/mini-programs
Last synced: about 1 year ago
JSON representation
Small programs made during free time
- Host: GitHub
- URL: https://github.com/jvm-coder/mini-programs
- Owner: jvm-coder
- Created: 2020-08-29T17:36:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-17T19:06:15.000Z (almost 5 years ago)
- Last Synced: 2025-01-23T08:41:51.343Z (about 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mini-programs
Small programs made during free time
1. FLAMES
It is a simple command line game written in python which predicts the relationship between two persons. Generally, person1 is male and person2 is female.
2. NAASA-HACK PRANK
It is a python based program which is a demonstration of how hacking is performed in movies.
3. PASSWORD GENERATOR
A python program to generate passwords using random function.
4. QR CODE GENERATOR
this python program takes message and scaling size as inputs and genrates a QR Code based on the given information.
5. STONE PAPER SCISSOR
this python program is a demonstration of STONE PAPER AND SCISSOR game. it is created by using random function.
6. SADDLE POINT OF A MATRIX
saddle point of a matrix is the element in the matrix which is smallest in its row and greatest in its column.
for matrix,
1 2 3
4 5 6
7 8 9
7 is saddle point because it is smallest in its row and greatest in its column.