Skip to content

Latest commit

 

History

History
29 lines (27 loc) · 1.27 KB

README.md

File metadata and controls

29 lines (27 loc) · 1.27 KB

symmetric_group

How to use

  1. Download Java to your PC (Written in Java 17)
  2. Download Maven to your PC (Required for building the project)
  3. And finally, download the entire project from this repository
  4. Assemble the project using mvn clean package
  5. Run the assembled project *.jar from the target/ folder using java -jar *.jar
    • Instead of the * character, use the full name of the file

What to write

  • Hm...
  • Here the program expects an expression to be input
    • Example: (1)(5)(3 2 4) * (3 2 1)(4 5) * (1)(2)(4)(5 3)
      • Be careful, for some reason the program is not protected from incorrect input
      • Example: (1 3)(2) * (3)(3) * (5 10)
      • You should understand that it is IMPOSSIBLE to multiply different symmetric groups
        • No, this is not laziness in validating input data at all...