Dustin B. Cisneros has been in the industry for over a decade. Dustin B. started their career in 2008 as the Co-Founder and CEO of SemoWeb LLC. In 2011, they joined QuadraNet Enterprises, LLC. as the Global Sales Manager, where they were responsible for cultivating an environment conducive to an energy-driven sales team and catering to a global client base. In 2019, they became the Chief Executive Officer of RackNerd LLC, where they introduced infrastructure stability and provided Dedicated Servers, Private Cloud solutions, DRaaS (Disaster-Recovery-as-a-Service), flexible Colocation, Virtual Private Servers and advanced DDoS Mitigation services.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _02.Students_by_Group
{
class Program
{
static void Main(string[] args)
{
var input = Console.ReadLine();
var students = new List<string[]>();
while (input != "END")
{
students.Add(input.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries));
input = Console.ReadLine();
}
students
.Where(x => x[2] == "2")
.OrderBy(x => x[0])
.ToList()
.ForEach(x => Console.WriteLine($"{x[0]} {x[1]}"));
}
}
}
Sign up to view 1 direct report
Get started