duplicate

  1. T

    Debug-Only Code Without Duplication

    I'm trying to write something similar to the existing Debug class that allows clients to explicitly verify pre- and post-conditions of their methods. For example, to check a precondition that the input variable to a method is not equal to 0, one would use Expects.IsGreaterThan(input, 0), and...
  2. L

    how to remove duplicate data while doing insertion sort?

    I'm basically stump at the moment. Doing a programming assignment. The task is to remove any duplicate data while performing an insertion sort. It's a console application, and uses a class to isolate the array. The sorting code is within the class and was given. Only need to modify it...
Back
Top Bottom