diff --git a/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/7a64c3bb-1d87-42c3-93fe-3387c83085e2.vsidx b/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/7a64c3bb-1d87-42c3-93fe-3387c83085e2.vsidx new file mode 100644 index 0000000..6221f12 Binary files /dev/null and b/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/7a64c3bb-1d87-42c3-93fe-3387c83085e2.vsidx differ diff --git a/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/981d3db5-8669-4ee7-8c76-bafd50be97c7.vsidx b/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/981d3db5-8669-4ee7-8c76-bafd50be97c7.vsidx deleted file mode 100644 index 0206d1f..0000000 Binary files a/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/981d3db5-8669-4ee7-8c76-bafd50be97c7.vsidx and /dev/null differ diff --git a/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/ba1600bd-76b9-411a-8196-debf75c947b3.vsidx b/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/ba1600bd-76b9-411a-8196-debf75c947b3.vsidx deleted file mode 100644 index 903fee6..0000000 Binary files a/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/ba1600bd-76b9-411a-8196-debf75c947b3.vsidx and /dev/null differ diff --git a/.vs/ISM6225_Fall_2023_Assignment_2/v17/.suo b/.vs/ISM6225_Fall_2023_Assignment_2/v17/.suo new file mode 100644 index 0000000..33d47de Binary files /dev/null and b/.vs/ISM6225_Fall_2023_Assignment_2/v17/.suo differ diff --git a/.vs/ISM6225_Fall_2023_Assignment_2/v17/.wsuo b/.vs/ISM6225_Fall_2023_Assignment_2/v17/.wsuo index 3451fd2..f867adf 100644 Binary files a/.vs/ISM6225_Fall_2023_Assignment_2/v17/.wsuo and b/.vs/ISM6225_Fall_2023_Assignment_2/v17/.wsuo differ diff --git a/ISM6225_Fall_2023_Assignment_2/DIS_Assig.png b/ISM6225_Fall_2023_Assignment_2/DIS_Assig.png new file mode 100644 index 0000000..afea7ef Binary files /dev/null and b/ISM6225_Fall_2023_Assignment_2/DIS_Assig.png differ diff --git a/ISM6225_Fall_2023_Assignment_2/Program.cs b/ISM6225_Fall_2023_Assignment_2/Program.cs index 803afb3..c937aad 100644 --- a/ISM6225_Fall_2023_Assignment_2/Program.cs +++ b/ISM6225_Fall_2023_Assignment_2/Program.cs @@ -1,12 +1,6 @@ -/* - -YOU ARE NOT ALLOWED TO MODIFY ANY FUNCTION DEFINATION's PROVIDED. -WRITE YOUR CODE IN THE RESPECTIVE QUESTION FUNCTION BLOCK - - -*/ - +using System; using System.Text; +using System.Collections.Generic; namespace ISM6225_Fall_2023_Assignment_2 { @@ -24,6 +18,7 @@ static void Main(string[] args) Console.WriteLine(); Console.WriteLine(); + //Question2: Console.WriteLine("Question 2"); string parenthesis = "()[]{}"; @@ -112,16 +107,50 @@ public static IList> FindMissingRanges(int[] nums, int lower, int upp { try { - // Write your code here and you can modify the return value according to the requirements - return new List>(); + // Initialize a list to store the missing ranges + IList> result = new List>(); + + // Convert 'lower' and 'upper' to long to prevent integer overflow + long lowerLong = (long)lower; + long upperLong = (long)upper; + + // Iterate through the elements in the 'nums' array + for (int i = 0; i < nums.Length; i++) + { + if (nums[i] > lowerLong) // If the current number is greater than 'lower', it indicates a missing range + { + if (nums[i] == lowerLong + 1) // Check if the missing range is just one number + { + result.Add(new List { (int)lowerLong }); + } + else + { + result.Add(new List { (int)lowerLong, nums[i] - 1 }); // Add a range from 'lowerLong' to 'nums[i] - 1' to 'result' + } + } + if (nums[i] == upperLong) // nums[i] is equal to upper as well + { + return result; + } + lowerLong = (long)nums[i] + 1; + } + + if (lowerLong <= upperLong) + { + result.Add(new List { (int)lowerLong, (int)upperLong }); + } + + return result; } catch (Exception) { + throw; } - } + + /* Question 2 @@ -156,8 +185,28 @@ public static bool IsValid(string s) { try { - // Write your code here and you can modify the return value according to the requirements - return s.Length == 0; + Stack stack = new Stack(); + + foreach (char c in s) + { + if (c == '(' || c == '{' || c == '[') // Check if the character is an opening bracket '(', '{', or '[' + { + stack.Push(c); // If it's an opening bracket, push it onto the stack + } + else + { + // If it's not an opening bracket, it must be a closing bracket + if (stack.Count == 0) + return false; + + char top = stack.Pop(); + + if ((c == ')' && top != '(') || (c == '}' && top != '{') || (c == ']' && top != '[')) // Check if the current closing bracket matches the last opening bracket + return false; + } + } + + return stack.Count == 0; } catch (Exception) { @@ -191,11 +240,35 @@ public static int MaxProfit(int[] prices) { try { - // Write your code here and you can modify the return value according to the requirements - return 1; + // Check if the 'prices' array is null or has fewer than 2 elements + if (prices == null || prices.Length < 2) + { + return 0; // If there are not enough prices, there can be no profit + } + + int maxProfit = 0; // Initialize the maximum profit to zero + int minPrice = prices[0]; // Initialize the minimum price to the first element + + // Iterate through the 'prices' array starting from the second element + for (int i = 1; i < prices.Length; i++) + { + if (prices[i] < minPrice) + { + // If the current price is lower than the minimum, update the minimum price + minPrice = prices[i]; + } + else if (prices[i] - minPrice > maxProfit) + { + // If selling at the current price results in a higher profit, update maxProfit + maxProfit = prices[i] - minPrice; + } + } + + return maxProfit; } catch (Exception) { + throw; } } @@ -229,8 +302,30 @@ public static bool IsStrobogrammatic(string s) { try { - // Write your code here and you can modify the return value according to the requirements - return false; + // Define a dictionary to store the valid strobogrammatic pairs + Dictionary strobogrammaticPairs = new Dictionary + { + {'0', '0'}, + {'1', '1'}, + {'6', '9'}, + {'8', '8'}, + {'9', '6'} + }; + + int left = 0; // Initialize the left pointer at the start of the string + int right = s.Length - 1; // Initialize the right pointer at the end of the string + + while (left <= right) // Iterate through the string from both ends toward the center + { + if (!strobogrammaticPairs.ContainsKey(s[left]) || s[right] != strobogrammaticPairs[s[left]]) // Check if the character at the left position exists in the strobogrammaticPairs + { + return false; // If not a valid pair, the string is not strobogrammatic + } + left++; // Move the left pointer to the right + right--; // Move the right pointer to the left + } + + return true; } catch (Exception) { @@ -271,8 +366,23 @@ public static int NumIdenticalPairs(int[] nums) { try { - // Write your code here and you can modify the return value according to the requirements - return 0; + int count = 0; // Initialize a variable to count the number of good pairs + Dictionary frequencyMap = new Dictionary(); // Create a dictionary to store the frequency of each number + + foreach (int num in nums) // Iterate through the array of numbers + { + if (frequencyMap.ContainsKey(num)) // If the number already exists in the frequencyMap, it means there's a pair. + { + count += frequencyMap[num]; // Increment the count by the number of occurrences of that number in the array. + frequencyMap[num]++; // Increment the frequency of the number in the frequencyMap. + } + else + { + frequencyMap[num] = 1; // If the number doesn't exist in the frequencyMap, initialize its frequency to 1. + } + } + + return count; } catch (Exception) { @@ -321,8 +431,23 @@ public static int ThirdMax(int[] nums) { try { - // Write your code here and you can modify the return value according to the requirements - return 0; + SortedSet uniqueNums = new SortedSet(); + + foreach (int num in nums) + { + uniqueNums.Add(num); + if (uniqueNums.Count > 3) // Iterate through the input array 'nums' + { + uniqueNums.Remove(uniqueNums.Min); // Add each number to the 'uniqueNums' set + } + } + + if (uniqueNums.Count < 3) // If the number of unique numbers exceeds 3, remove the smallest element. + { + return uniqueNums.Max; // If 'uniqueNums' contains fewer than 3 elements, return the maximum element. + } + + return uniqueNums.Min; // Return the minimum element, which is the third maximum number. } catch (Exception) { @@ -354,8 +479,22 @@ public static IList GeneratePossibleNextMoves(string currentState) { try { - // Write your code here and you can modify the return value according to the requirements - return new List() { }; + IList result = new List(); // Create a list to store possible next states + + for (int i = 0; i < currentState.Length - 1; i++) // Iterate through the input string 'currentState' + { + if (currentState[i] == '+' && currentState[i + 1] == '+') // Check for consecutive "++" substrings + { + char[] newState = currentState.ToCharArray(); // Convert the current state to a character array + + // Flip the consecutive "++" into "--" by changing the corresponding characters + newState[i] = '-'; + newState[i + 1] = '-'; + result.Add(new string(newState)); // Add the updated state to the 'result' list + } + } + + return result; } catch (Exception) { @@ -383,8 +522,17 @@ public static IList GeneratePossibleNextMoves(string currentState) public static string RemoveVowels(string s) { - // Write your code here and you can modify the return value according to the requirements - return ""; + StringBuilder result = new StringBuilder(); // Create a StringBuilder to store the resulting string + + foreach (char c in s) + { + if ("aeiouAEIOU".IndexOf(c) == -1) // Check if the current character 'c' is not a vowel (not found in "aeiouAEIOU") + { + result.Append(c); // Append the character to the 'result' if it's not a vowel + } + } + + return result.ToString(); // Convert the StringBuilder to a string and return the result } /* Inbuilt Functions - Don't Change the below functions */ diff --git a/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.dll b/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.dll index 4c69587..dd0abdf 100644 Binary files a/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.dll and b/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.dll differ diff --git a/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.exe b/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.exe new file mode 100644 index 0000000..50b1095 Binary files /dev/null and b/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.exe differ diff --git a/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.pdb b/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.pdb index 4279604..efbf5e1 100644 Binary files a/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.pdb and b/ISM6225_Fall_2023_Assignment_2/bin/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.pdb differ diff --git a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.GeneratedMSBuildEditorConfig.editorconfig b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.GeneratedMSBuildEditorConfig.editorconfig index fa7acc0..7194da8 100644 --- a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.GeneratedMSBuildEditorConfig.editorconfig +++ b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.GeneratedMSBuildEditorConfig.editorconfig @@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = ISM6225_Fall_2023_Assignment_2 -build_property.ProjectDir = C:\Users\Mounica Pothureddy\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\ +build_property.ProjectDir = C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\ diff --git a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.assets.cache b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.assets.cache index 5e04259..9d9fde7 100644 Binary files a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.assets.cache and b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.assets.cache differ diff --git a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.AssemblyReference.cache b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.AssemblyReference.cache deleted file mode 100644 index 130457b..0000000 Binary files a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.AssemblyReference.cache and /dev/null differ diff --git a/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/read.lock b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.BuildWithSkipAnalyzers similarity index 100% rename from .vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/read.lock rename to ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.BuildWithSkipAnalyzers diff --git a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.CoreCompileInputs.cache b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.CoreCompileInputs.cache index 659ca17..996e65b 100644 --- a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.CoreCompileInputs.cache +++ b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -b3e1273a5bae2e691691398888e1c0c21c593bf8 +a60d5bb60bb25598f134185e493d4f04d5b63ce0 diff --git a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.FileListAbsolute.txt b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.FileListAbsolute.txt index 9254bf0..89bb8aa 100644 --- a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.FileListAbsolute.txt +++ b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.csproj.FileListAbsolute.txt @@ -13,3 +13,17 @@ /Users/naveennagulapalli/Projects/ISM6225_Fall_2023_Assignment_2/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.pdb /Users/naveennagulapalli/Projects/ISM6225_Fall_2023_Assignment_2/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.genruntimeconfig.cache /Users/naveennagulapalli/Projects/ISM6225_Fall_2023_Assignment_2/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ref/ISM6225_Fall_2023_Assignment_2.dll +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\bin\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.exe +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\bin\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.deps.json +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\bin\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.runtimeconfig.json +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\bin\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.dll +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\bin\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.pdb +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.AssemblyInfoInputs.cache +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.AssemblyInfo.cs +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.csproj.CoreCompileInputs.cache +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.dll +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\refint\ISM6225_Fall_2023_Assignment_2.dll +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.pdb +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.genruntimeconfig.cache +C:\Users\himan\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ref\ISM6225_Fall_2023_Assignment_2.dll diff --git a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.dll b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.dll index 4c69587..dd0abdf 100644 Binary files a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.dll and b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.dll differ diff --git a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.genruntimeconfig.cache b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.genruntimeconfig.cache index 66ad04f..d158699 100644 --- a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.genruntimeconfig.cache +++ b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.genruntimeconfig.cache @@ -1 +1 @@ -84e80f8aec61464260bf762f5d8ae77f9f683aa3 +1d21740c59626934e95580837e45833927ba9358 diff --git a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.pdb b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.pdb index 4279604..efbf5e1 100644 Binary files a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.pdb and b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/ISM6225_Fall_2023_Assignment_2.pdb differ diff --git a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/apphost.exe b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/apphost.exe index 91aaac9..50b1095 100644 Binary files a/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/apphost.exe and b/ISM6225_Fall_2023_Assignment_2/obj/Debug/net7.0/apphost.exe differ diff --git a/ISM6225_Fall_2023_Assignment_2/obj/ISM6225_Fall_2023_Assignment_2.csproj.nuget.dgspec.json b/ISM6225_Fall_2023_Assignment_2/obj/ISM6225_Fall_2023_Assignment_2.csproj.nuget.dgspec.json index 41915c7..826e76f 100644 --- a/ISM6225_Fall_2023_Assignment_2/obj/ISM6225_Fall_2023_Assignment_2.csproj.nuget.dgspec.json +++ b/ISM6225_Fall_2023_Assignment_2/obj/ISM6225_Fall_2023_Assignment_2.csproj.nuget.dgspec.json @@ -1,24 +1,20 @@ { "format": 1, "restore": { - "C:\\Users\\Mounica Pothureddy\\Downloads\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj": {} + "C:\\Users\\himan\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj": {} }, "projects": { - "C:\\Users\\Mounica Pothureddy\\Downloads\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj": { + "C:\\Users\\himan\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Mounica Pothureddy\\Downloads\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", + "projectUniqueName": "C:\\Users\\himan\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", "projectName": "ISM6225_Fall_2023_Assignment_2", - "projectPath": "C:\\Users\\Mounica Pothureddy\\Downloads\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", - "packagesPath": "C:\\Users\\Mounica Pothureddy\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Mounica Pothureddy\\Downloads\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\obj\\", + "projectPath": "C:\\Users\\himan\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", + "packagesPath": "C:\\Users\\himan\\.nuget\\packages\\", + "outputPath": "C:\\Users\\himan\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], "configFilePaths": [ - "C:\\Users\\Mounica Pothureddy\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Users\\himan\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -26,7 +22,6 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -60,7 +55,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" } } } diff --git a/ISM6225_Fall_2023_Assignment_2/obj/ISM6225_Fall_2023_Assignment_2.csproj.nuget.g.props b/ISM6225_Fall_2023_Assignment_2/obj/ISM6225_Fall_2023_Assignment_2.csproj.nuget.g.props index 04c5214..6fa1ed6 100644 --- a/ISM6225_Fall_2023_Assignment_2/obj/ISM6225_Fall_2023_Assignment_2.csproj.nuget.g.props +++ b/ISM6225_Fall_2023_Assignment_2/obj/ISM6225_Fall_2023_Assignment_2.csproj.nuget.g.props @@ -5,12 +5,11 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Mounica Pothureddy\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\himan\.nuget\packages\ PackageReference - 6.6.0 + 6.7.0 - - + \ No newline at end of file diff --git a/ISM6225_Fall_2023_Assignment_2/obj/project.assets.json b/ISM6225_Fall_2023_Assignment_2/obj/project.assets.json index 330e755..a7b37ff 100644 --- a/ISM6225_Fall_2023_Assignment_2/obj/project.assets.json +++ b/ISM6225_Fall_2023_Assignment_2/obj/project.assets.json @@ -8,24 +8,19 @@ "net7.0": [] }, "packageFolders": { - "C:\\Users\\Mounica Pothureddy\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + "C:\\Users\\himan\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Mounica Pothureddy\\Downloads\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", + "projectUniqueName": "C:\\Users\\himan\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", "projectName": "ISM6225_Fall_2023_Assignment_2", - "projectPath": "C:\\Users\\Mounica Pothureddy\\Downloads\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", - "packagesPath": "C:\\Users\\Mounica Pothureddy\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Mounica Pothureddy\\Downloads\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\obj\\", + "projectPath": "C:\\Users\\himan\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", + "packagesPath": "C:\\Users\\himan\\.nuget\\packages\\", + "outputPath": "C:\\Users\\himan\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], "configFilePaths": [ - "C:\\Users\\Mounica Pothureddy\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Users\\himan\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -33,7 +28,6 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -67,7 +61,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" } } } diff --git a/ISM6225_Fall_2023_Assignment_2/obj/project.nuget.cache b/ISM6225_Fall_2023_Assignment_2/obj/project.nuget.cache index 9fa3725..c0ffbce 100644 --- a/ISM6225_Fall_2023_Assignment_2/obj/project.nuget.cache +++ b/ISM6225_Fall_2023_Assignment_2/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "dyNoLXySHR2oQot6QdHCrQtfkYu0BbB1u1jqPSLEjXeT1gk0CAAZW3vvLK9aW5UoHDxyxaxCnRXih9W6HGmMGw==", + "dgSpecHash": "fwnBRpfQvtN96+SpXwO9X6X+vmyHMzdUi2R7Aqb1IwMdRjLqqXc75wCZ43cC/eaNeSaEOP0DB1H48KEAiJvmjQ==", "success": true, - "projectFilePath": "C:\\Users\\Mounica Pothureddy\\Downloads\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", + "projectFilePath": "C:\\Users\\himan\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", "expectedPackageFiles": [], "logs": [] } \ No newline at end of file