# “StableSorting” (Solution)

## Answer

Yes.

## Explanation

The standard sorting .NET is unstable, which means that if we, say, sort rows insensitive, the strings `"AAA"` and `"aaa"` can accommodate in any order.

[Problem](https://andreyakinshin.gitbook.io/problembookdotnet/en/strings/stablesorting-p)
