Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 439 Bytes

Ex_1_4_08.md

File metadata and controls

28 lines (17 loc) · 439 Bytes
title date draft tags categories
Algorithm4 Java Solution 1.4.08
2019-08-06 15:54:00 +0800
false
JAVA
TECH
archives

1.4.08

Problem:

Write a program to determine the number pairs of values in an input file that are equal. If your first try is quadratic, think again and use Arrays.sort() to develop a linearithmic solution.

Solution:

code:

Ex_1_4_08.java

Reference: