Comment by user2023861 on Splitting two ObservableCollections lightning fast
What do you mean "more efficient". Is your code taking a long time to run?
View ArticleComment by user2023861 on Tail-recursive call vs looping for a Poker app
C# doesn't do tail-recursion anyways. You wrote a recursive method, not a tail-recursive method. stackoverflow.com/questions/491376/…
View ArticleComment by user2023861 on Model-View-Presenter Winforms app
Just curious, why Winforms instead of WPF?
View ArticleComment by user2023861 on Algorithm to determine if a string is all unique...
Isn't an array considered a data structure? You're using it as a simple hash table.
View ArticleComment by user2023861 on Take all underlined words, put in Excel column
@BruceWayne, I don't know a VBA way, sorry. It might not be selecting every instance because maybe font sizes are different, or colors, or bold, etc. You can select-all and set the font-size,...
View ArticleComment by user2023861 on Build Excel formulas with string replacements
Your code relieves the horizontal scrolling in the C# code, but not in Excel. If someone wanted to check out the formula in Excel, they'll be scrolling left and right.
View ArticleComment by user2023861 on Build Excel formulas with string replacements
You should consider splitting up the Excel formula. Larger Excel formulas have the same problems that larger C# methods have. They're difficult to maintain. Can you imagine searching this formula for a...
View ArticleComment by user2023861 on Find the repeated elements in a list
+1, scrolled way too far to find this. This is optimal in both runtime and memory usage. This should be the answer
View ArticleComment by user2023861 on Speeding up thousands of string parses
You might see an improvement if you use compiled regular expressions instead of interpreted. Check out this article docs.microsoft.com/en-us/dotnet/standard/base-types/… which shows how to use the...
View ArticleComment by user2023861 on Sum Square Difference, which way is more Pythonic?
unnecessary variables can you explain this point? I think that in general code with more usefully-named variables is easier to maintain than long lines of code like yours
View ArticleAnswer by user2023861 for Tic Tac Toe in the Console
Why not store moves as a string of 0s and 1s instead of 9 properties? For instance this:_ X __ X OX O _could be represented as:string xmoves = "010010100"string omoves = "000001010"With this scheme,...
View ArticleAnswer by user2023861 for FizzBuzz Problem Solution
You have four calls to System.out.println(arg). If you want to change your code from printing to the console to writing to a file or a database, you have to change four lines in your code even though...
View ArticleAnswer by user2023861 for Check if all lotto numbers are covered in input
Your first loop could be simplified:while (ticketNumber != 0) { neededNumbers[ticketNumber - 1] = true; ticketNumber = input.nextInt();}Arrays allow random access, so if you can map your input (a...
View ArticleAnswer by user2023861 for Census data from file input (text)
Some ideas:You if conditions can be simplified. The following to blocks are logically equivalent. This version is yours with only if statements:if (ageData[i] > 0 && ageData[i] <= 18){...
View ArticleAnswer by user2023861 for Given two int values, return the one closer to 10
A little math can shorten this. Take the average of the two numbers. If the average is higher than 10, that means the higher number is pulling up the average more than the lower number is pulling it...
View ArticleAnswer by user2023861 for Matching any certain selection of inputs
I'd suggest that you simplify. Imagine you're a junior programmer and you are asked to edit this abomination (or the one in the accepted answer) in order to add support for inputs of the type 10cm and...
View ArticleAnswer by user2023861 for String reversal, capitalize vowels, lowercase...
You can make use of char static methods to do a lot of the work for you. Also, there's no need to memorize the ASCII values of vowels. Just use the vowels themselves.static string Problem(string arg){...
View ArticleAnswer by user2023861 for Sorting a list of first names from a text file
Here's a way to do it in one line of Linq code:int score = System.IO.File.ReadAllLines(ConfigurationManager.AppSettings["LocationOfNamesFile"]) .SelectMany(s => s.Split(',')) .OrderBy(b => b)...
View ArticleAnswer by user2023861 for SQL query to select most recent version
You can use a sub-query:declare @tbl table ( id INT, effective DATE, points INT)INSERT INTO @tblVALUES (1, '1/1/2015', 123), (1, '2/1/2015', 234), (1, '3/1/2015', 345), (2, '4/1/2015', 123), (2,...
View Article