This is a pretty simple one, but it gives you a list of users where litigation hold is not enbaled.
PowerShell:
Connect-ExchangeOnline -UserPrincipalName <global-admin-account>
Get-Mailbox | Where-Object { $_.LitigationHoldEnabled -eq $false }