Recap Challenge #2
Lesson 7 of 14 in Coddy's Strings and Arrays in C# course.
You are now a String master! Let's challenge your knowledge!
Challenge
EasyWrite a function named noA that gets a string and returns the same string, but without any a or A letters it might contain.
Try it yourself
using System;
class NoA {
public static string noA(string a1) {
// Write code here
}
}