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/ae248d3a-05f0-460c-82c3-65f905c07258.vsidx b/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/ae248d3a-05f0-460c-82c3-65f905c07258.vsidx new file mode 100644 index 0000000..48835d6 Binary files /dev/null and b/.vs/ISM6225_Fall_2023_Assignment_2/FileContentIndex/ae248d3a-05f0-460c-82c3-65f905c07258.vsidx 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..a703de7 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..0b46315 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/Assignment2 DIS.docx b/ISM6225_Fall_2023_Assignment_2/Assignment2 DIS.docx new file mode 100644 index 0000000..65cc539 Binary files /dev/null and b/ISM6225_Fall_2023_Assignment_2/Assignment2 DIS.docx differ diff --git a/ISM6225_Fall_2023_Assignment_2/Program.cs b/ISM6225_Fall_2023_Assignment_2/Program.cs index 803afb3..ced07a8 100644 --- a/ISM6225_Fall_2023_Assignment_2/Program.cs +++ b/ISM6225_Fall_2023_Assignment_2/Program.cs @@ -112,8 +112,38 @@ 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>(); + IList> result = new List>(); + int len = nums.Length; + + if (len == 0) + { + // If there are no elements in the 'nums' array, + // add a single range from 'lower' to 'upper' to the 'result'. + result.Add(new List { lower, upper }); + return result; + } + + if (nums[0] - lower > 0) + // If the first element of 'nums' is greater than 'lower', + // add a range from 'lower' to 'nums[0] - 1' to the 'result'. + result.Add(new List { lower, nums[0] - 1 }); + + int i; + for (i = 1; i < len; i++) + { + if (nums[i] - nums[i - 1] > 1) + // If there's a gap between 'nums[i-1]' and 'nums[i]', + // add a range from 'nums[i-1] + 1' to 'nums[i] - 1' to the 'result'. + result.Add(new List { nums[i - 1] + 1, nums[i] - 1 }); + } + + if (upper - nums[i - 1] > 0) + // If there's a gap between the last element of 'nums' and 'upper', + // add a range from 'nums[i-1] + 1' to 'upper' to the 'result'. + result.Add(new List { nums[i - 1] + 1, upper }); + + return result; + } catch (Exception) { @@ -156,8 +186,56 @@ 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; + if (s.Length <= 1) + return false; + + var bracketQueue = new List(); + for (var i = 0; i < s.Length; i++) + { + if (s[i] == '(') + { + // If an opening parenthesis is encountered, add '1' to the bracketQueue. + bracketQueue.Add(1); + continue; + } + if (s[i] == '[') + { + // If an opening square bracket is encountered, add '2' to the bracketQueue. + bracketQueue.Add(2); + continue; + } + if (s[i] == '{') + { + // If an opening curly brace is encountered, add '3' to the bracketQueue. + bracketQueue.Add(3); + continue; + } + if (bracketQueue.Count == 0) + // If there's no opening bracket to match the current closing bracket, return false. + return false; + if (s[i] == ')' && bracketQueue[bracketQueue.Count - 1] == 1) + { + // If a closing parenthesis matches the last opened parenthesis, remove it from bracketQueue. + bracketQueue.RemoveAt(bracketQueue.Count - 1); + continue; + } + if (s[i] == ']' && bracketQueue[bracketQueue.Count - 1] == 2) + { + // If a closing square bracket matches the last opened square bracket, remove it from bracketQueue. + bracketQueue.RemoveAt(bracketQueue.Count - 1); + continue; + } + if (s[i] == '}' && bracketQueue[bracketQueue.Count - 1] == 3) + { + // If a closing curly brace matches the last opened curly brace, remove it from bracketQueue. + bracketQueue.RemoveAt(bracketQueue.Count - 1); + continue; + } + // If none of the above conditions are met, return false. + return false; + } + // If all brackets are properly matched, the bracketQueue should be empty. + return bracketQueue.Count == 0; } catch (Exception) { @@ -191,8 +269,26 @@ public static int MaxProfit(int[] prices) { try { - // Write your code here and you can modify the return value according to the requirements - return 1; + int buy = 0, sell = 0, profit = 0; + + while (sell < prices.Length) + { + // Calculate the profit by finding the maximum difference between the selling price + // at the current index and the buying price at the 'buy' index. + profit = Math.Max(prices[sell] - prices[buy], profit); + + if (prices[sell] < prices[buy]) + { + // If the current selling price is lower than the buying price, + // update the 'buy' index to the current 'sell' index to potentially + // find a better buying opportunity. + buy = sell; + } + sell++; + } + + return profit; + } catch (Exception) { @@ -229,8 +325,19 @@ public static bool IsStrobogrammatic(string s) { try { - // Write your code here and you can modify the return value according to the requirements - return false; + var d = new Dictionary { { '6', '9' }, { '9', '6' }, { '8', '8' }, { '1', '1' }, { '0', '0' } }; + + for (int i = 0; i <= s.Length / 2; i++) + { + // Check if the character at index 'i' is in the dictionary 'd', + // and if its corresponding character at the opposite index is the same. + if (!d.ContainsKey(s[i]) || d[s[i]] != s[^(i + 1)]) + return false; + } + + // If all characters are valid and symmetrically matched, return true. + return true; + } catch (Exception) { @@ -271,8 +378,18 @@ public static int NumIdenticalPairs(int[] nums) { try { - // Write your code here and you can modify the return value according to the requirements - return 0; + Dictionary id = new(); // Initialize a dictionary to track the count of each number. + int ans = 0; + + for (int i = 0; i < nums.Length; i++) + { + int c = id.GetValueOrDefault(nums[i], 0); // Get the count of the current number, default to 0 if not found. + ans += c; // Add the current count to the running sum 'ans'. + id[nums[i]] = c + 1; // Increment the count of the current number in the dictionary. + } + + return ans; // Return the total count of pairs that meet the specified condition. + } catch (Exception) { @@ -321,8 +438,18 @@ public static int ThirdMax(int[] nums) { try { - // Write your code here and you can modify the return value according to the requirements - return 0; + List list = nums.Distinct().ToList(); // Remove duplicates from 'nums' and convert it to a list. + list.Sort(); // Sort the list in ascending order. + + if (list.Count < 3) + { + // If there are fewer than three unique elements, return the largest element. + return list[list.Count - 1]; + } + + // Otherwise, return the third-largest element in the sorted list. + return list[list.Count - 3]; + } catch (Exception) { @@ -354,8 +481,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() { }; + var list = new List(); // Initialize a list to store the transformed strings. + var arr = currentState.ToCharArray(); // Convert the input 'currentState' into a character array. + + for (int i = 0; i < currentState.Length - 1; i++) + { + // Check for consecutive '+' symbols and replace them with '-' to create a new state. + if (arr[i] == arr[i + 1] && arr[i] == '+') + { + arr[i] = arr[i + 1] = '-'; // Transform the characters. + list.Add(new string(arr)); // Add the modified state to the list. + arr[i] = arr[i + 1] = '+'; // Restore the original state for the next iteration. + } + } + + return list; // Return the list of transformed states. + } catch (Exception) { @@ -383,8 +524,21 @@ 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 ""; + var set = new HashSet() { 'a', 'e', 'i', 'o', 'u' }; // Initialize a set of vowels. + var sb = new StringBuilder(); + + foreach (var c in s) + { + // Iterate through each character in the string 's'. + if (!set.Contains(c)) + { + // If the character is not in the set of vowels, append it to the StringBuilder. + sb.Append(c); + } + } + + return sb.ToString(); // Return the result as a string with vowels removed. + } /* 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..d794146 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..01d820f 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..72521ad 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\Admin\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..fe149cf 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..fef5aaf 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\Admin\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\bin\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.exe +C:\Users\Admin\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\Admin\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\Admin\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\bin\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.dll +C:\Users\Admin\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\bin\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.pdb +C:\Users\Admin\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\Admin\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\Admin\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\Admin\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\Admin\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.dll +C:\Users\Admin\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\Admin\Source\Repos\ISM6225_Fall_2023_Assignment_2\ISM6225_Fall_2023_Assignment_2\obj\Debug\net7.0\ISM6225_Fall_2023_Assignment_2.pdb +C:\Users\Admin\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\Admin\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..d794146 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..ac12152 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 +e8b9ba449eab6e6731d186016f0f935a7690d535 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..01d820f 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..e06d833 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\\Admin\\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\\Admin\\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\\Admin\\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\\Admin\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", + "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Admin\\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\\Admin\\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..a8268c3 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\Admin\.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..5332143 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\\Admin\\.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\\Admin\\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\\Admin\\Source\\Repos\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2\\ISM6225_Fall_2023_Assignment_2.csproj", + "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Admin\\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\\Admin\\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..de02328 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": "fc+drWjsV/hZz6hn0N42goTz0TQuttiWuN63GpqlEQNhgf27dBxAq888KFbLziQzwYembWuKGiWAvCKJyDsBgw==", "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\\Admin\\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