A Simple Maximum

View as PDF

Submit solution

Points: 7
Time limit: 0.05s
Memory limit: 2M

Author:
Problem type
Allowed languages
Assembly

Your computer engineering instructor gave you a simple task:

Write a program to find the largest number in a list of N signed 8-bit integers.

Since you think this is too easy a task for your programming prowess, you've decided to make life more interesting... by computing this simple maximum in assembly. To top things off, you want to show off by also finding the minimum number in the list.

Input Specification

The first line of input will contain the integer N (1 \le N \le 100).
The second line of input will contain N space-separated signed 8-bit integers, representing the list.

Output Specification

The minimum number in the list followed by the maximum, and separated by a space.

Sample Input

5
2 3 9 0 18

Sample Output

0 18

Note

To use libc in NASM, the first line of your program should be ; libc. For all others, it should be ; features: libc.


Comments


  • 0
    Ninjaclasher  commented on June 24, 2017, 2:12 p.m.

    If my calculations are correct, does:

    signed 8-bit integers

    mean that each integer can range from -128 to 127 (inclusive)?


    • 4
      wleung_bvg  commented on June 24, 2017, 3:20 p.m. edit 3

      Yes. 8 bits means there are 8 binary digits, but since the first bit is used for the sign (sort of), the range is -2^7 to 2^7 - 1.


  • -1
    root  commented on Feb. 21, 2017, 10:09 p.m. edit 2

    For those getting CE, make sure you are using the right assembler and syntax. GAS by default uses AT&T syntax, not Intel syntax. Put this at the start of your submission to use intel syntax.

    .intel_syntax noprefix


    • 0
      quantum  commented on Feb. 22, 2017, 12:03 a.m. edit 3

      Such false rumours. GAS supports Intel® syntax perfectly fine. To use that is left as an exercise for the reader.

      By the way, your history "edit history") leaves a lot to be desired.


      • -2
        root  commented on Feb. 25, 2017, 2:22 a.m.

        Was going to ask that when I realized my mistake, unfortunately I can't delete comments, so I improvised a comment to avoid the downvotes. Might consider adding that feature to support comment self-cleanup.


  • 4
    Centurion902  commented on Feb. 8, 2017, 5:01 a.m.

    How many of you did this one before realising they were asking for it in assembly?


    • 8
      Xyene  commented on Feb. 8, 2017, 5:46 a.m.

      Now that you've solved the problem, go solve it in assembly!


  • -1
    root  commented on Sept. 25, 2016, 2:42 p.m.

    Please make it clear whether these are signed or unsigned. I'll assume unsigned for now.


    • 4
      Xyene  commented on Sept. 25, 2016, 2:49 p.m.

      They are signed, and I've updated the statement to reflect this.