AspBucket offers ASP.NET, C#, VB, Jquery, CSS, Ajax, SQL tutorials. It is the best place for programmers to learn

Latest Posts

Friday 3 March 2023

How to add extra SSL certificates in Node JS server?



If node server is communicating with other Server & trusted certificate installed on the other server. Then Node Server could get certificate error like "Chain of trust issue". To over come this issue Trusted certificate also need to be added in the Node server.

Sunday 22 January 2023

Saturday 21 January 2023

Friday 13 January 2023

DSA Problem solution: Find Kth Largest Element in an Array using Heap in C#



Given an integer array nums and an integer k, return the kth largest element in the array.

Note that it is the kth largest element in the sorted order, not the kth distinct element.


Example 1:

Input: nums = [3,2,1,5,6,4], k = 2

Output: 5

  • Popular Posts
  • Comments