Lets understand HTTP

Lets understand HTTP
What is HTTP ? HTTP (Hypertext Transfer Protocol) is a protocol designed to transfer file (hypermedia) or information (hypertext) over a network.But, do you really know how does it work? How ...
0 Read More

House Robber IV

ProblemTC: O(nlog(Max(nums))) ⛶class Solution { public int minCapability(int[] nums, int k) { int index = 0; int low = Integer.MAX_VALUE; int high = 0; for(int i...
0 Read More