Coders Packet

Packets submitted by Khushboo Jagwani

Age calculator in Java using Period class

Age calculator estimates the age of a person from the Date of birth using LocalDate objects, period class, and between() method.

Convert numeral value to Roman string using Java

This code is used to convert the highest possible number into Roman string in Java i.e 1000=M, 500=D, 100=C, 50=L,10=X, 5=V, 1=I

Anagram detection using Java

Java program to compare if 2 strings are anagram using sort() and equal() method. Two resembling strings are said to be anagram otherwise not .