Submit solution
Points:
7 (partial)
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 mode of a list of
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 mode in assembly. You're guaranteed by your teacher that the mode will be unique.
Input Specification
The first line of input will contain the integer
The second line of input will contain
Output Specification
The mode of the list.
Sample Input
Copy
5
2 2 9 0 18
Sample Output
Copy
2
Note
To use libc
in NASM, the first line of your program should be ; libc
. For all others, it should be ; features: libc
.
Comments