1169. Invalid Transactions
https://leetcode.com/problems/invalid-transactions
Description
A transaction is possibly invalid if:
the amount exceeds
$1000
, or;if it occurs within (and including)
60
minutes of another transaction with the same name in a different city.
You are given an array of strings transaction
where transactions[i]
consists of comma-separated values representing the name, time (in minutes), amount, and city of the transaction.
Return a list of transactions
that are possibly invalid. You may return the answer in any order.
Example 1:
Example 2:
Example 3:
Constraints:
transactions.length <= 1000
Each
transactions[i]
takes the form"{name},{time},{amount},{city}"
Each
{name}
and{city}
consist of lowercase English letters, and have lengths between1
and10
.Each
{time}
consist of digits, and represent an integer between0
and1000
.Each
{amount}
consist of digits, and represent an integer between0
and2000
.
ac
Last updated