Yeah i know we can just assign different modules to people and hopefully they will all work together perfectly, right guys

. For the algorithm i thought we could just have a difficult problem and then everyone can give ideas until we have a nice efficient algorithm.
I recently did a reverse polish notation calculator for homework so maybe we could try make a GUI one. Just a simple + - / * ^ % RPN calculator. I don't know if you want to do it the OOP way, if everyone is familiar with that then we can. It is also more secure if we use classes.
example of postfix notation
postfix/prefix | normal infix
23 44 + 45 5 * / = (23 + 44) / (45 * 5)