From e6181c24124d97f2fbc932b8a68311e625463156 Mon Sep 17 00:00:00 2001 From: uzvkl Date: Tue, 11 Jun 2019 23:05:52 +0200 Subject: Move dsa related stuff to subfolder --- dsa/DSALib/Auxiliary/Calculator/ISolvable.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dsa/DSALib/Auxiliary/Calculator/ISolvable.cs (limited to 'dsa/DSALib/Auxiliary/Calculator/ISolvable.cs') diff --git a/dsa/DSALib/Auxiliary/Calculator/ISolvable.cs b/dsa/DSALib/Auxiliary/Calculator/ISolvable.cs new file mode 100644 index 0000000..844e9b3 --- /dev/null +++ b/dsa/DSALib/Auxiliary/Calculator/ISolvable.cs @@ -0,0 +1,10 @@ +namespace DSALib.Auxiliary.Calculator +{ + /// + /// Object has to be able to return an integer as it's value + /// + public interface ISolvable + { + int Solve(); + } +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf