Skip to content

Instantly share code, notes, and snippets.

View KineticTactic's full-sized avatar
🎧
College 🫡

Rudrajeet Pal KineticTactic

🎧
College 🫡
View GitHub Profile
@KineticTactic
KineticTactic / CarServiceCenter.java
Last active August 18, 2024 11:16
Our ICSE computer science project from 2022-23. I had so much fun working on this with my friends.
import java.util.Scanner;
// Main contributors (me and my friends) <3
// Rudrajeet (Me)
// Kumar Abhiraj
// Koushiki
// Avick
// Gizangshu
// Diparati
// Prajakta
@KineticTactic
KineticTactic / electronic_configuration.py
Created October 28, 2023 15:26
Python program to output the electronic configuration of any element given its Atomic number or Symbol
## This program is written for my school assignment.
ELEMENTS = (
"H", "He", "Li", "Be", "B", "C", "N", "O", "F", "Ne",
"Na", "Mg", "Al", "Si", "P", "S", "Cl", "Ar", "K", "Ca",
"Sc", "Ti", "V", "Cr", "Mn", "Fe", "Co", "Ni", "Cu", "Zn",
"Ga", "Ge", "As", "Se", "Br", "Kr", "Rb", "Sr", "Y", "Zr",
"Nb", "Mo", "Tc", "Ru", "Rh", "Pd", "Ag", "Cd", "In", "Sn",
"Sb", "Te", "I", "Xe", "Cs", "Ba", "La", "Ce", "Pr", "Nd",
"Pm", "Sm", "Eu", "Gd", "Tb", "Dy", "Ho", "Er", "Tm", "Yb",