Two sum: Difference between revisions

396 bytes removed ,  5 years ago
m
→‎version 1: removed flag.
(→‎version 1: flagged as incorrect.)
m (→‎version 1: removed flag.)
Line 1,577:
=={{header|REXX}}==
===version 1===
 
{{incorrect|REXX| <br><br> Because of the new task requirements around December, 2017, <br> negative integers (as well as zero) are allowed, in addition, they need not be sorted. <br><br> With negative numbers, this version doesn't produce the correct results.
<br><br> (from a modified program: &nbsp; &nbsp; twosum 25 26 27 28 29 30 -1 -2 -3 -4 -5 -6 <br><br> [] - no items found <br><br>}}
 
<lang rexx>list=0 2 11 19 90
Do i=0 By 1 Until list=''