using System.Collections.Generic;
public static List<int> SortOdd(List<int> numbers)
var oddNumbers = numbers.Where(n => n % 2 == 1).ToList();
for (int i = 0; i < numbers.Count; i++)
numbers[i] = oddNumbers[k++];
public static void Main()
List<int> numbers = new List<int>() { 2, 3, 1, 4, 7, 8, 3 };
List<int> result = SortOdd(numbers);
foreach (var item in result)