GVSU CIS 263

Week 10 / Day 1

NP

Decideability

boolean troublemaker(string code, string input) {
   if (will_halt(code, input)) {
      while (true);
   } else {
     return false;
   }
}

Week 10 / Day 2

Greedy algorithms