Move History

Rooted by: Return 100
Fork Selected
  • Code
    int returnhundred()
    {
      return 100;
    }
    Test Cases
    // TODO: Replace examples and use TDD development by writing your own tests
    
    Describe(Tests)
    {
        It(Test_1)
        {
            Assert::That(returnhundred(), Equals(100));
        }
    };
  • Code
    • int returnhundred()
    • {
    • return stoi(std::to_string('H' & 'U' & 'N' & 'D' & 'R' & 'E' & 'D'), 0, 16);
    • return 100;
    • }