Example #1
0
 public void Test4()
 {
     Assert.AreEqual(32, Partitions.Solve("333333", 3));
 }
Example #2
0
 public void Test2()
 {
     Assert.AreEqual(0, Partitions.Solve("10000", 7));
 }
Example #3
0
 public void Test3()
 {
     Assert.AreEqual(4, Partitions.Solve("123", 1));
 }
Example #4
0
 public void Test1()
 {
     Assert.AreEqual(0, Partitions.Solve("44", 3));
 }