Login
Discover
Waves
Communities
Login
Signup
Topics
#golibrary
Global
Trending
Hot
New
Top
#golibrary
New
Top communities
Create your community
latest #golibrary created topics on internet
golibrary
steempress
2020-05-13 14:09
Algorithm to find prime factors of very big numbers
Prime Factorization How to write an efficient algorithm to find prime factors of very large numbers ? Below is a simple algorithm to achieve the same:- Check if the given number is prime, if true,
$ 0.000
1
1
golibrary
steempress
2020-04-30 03:46
How to create a VM In Microsoft Azure Cloud
In this article we will learn how to deploy virtual machine Azure cloud. Let’s get familiar with few terms: Microsoft Azure Cloud: Microsoft Azure is a cloud computing service created by Microsoft
$ 0.126
10
golibrary
steempress
2020-04-12 13:10
Algorithm to solve linear equation in one variable
Problem Statement Solve a given equation and return the value of x in the form of string "x=#value". The equation contains only '+', '-' operation, the variable x and its coefficient. If there
golibrary
steempress
2020-03-27 12:00
Remove duplicates from sorted array in place
Problem Statement Given an array of sorted numbers, remove all duplicates from it. You should not use any extra space; after removing the duplicates in-place return the new length of the array. Example
whose
Splinterlands
2026-06-25 08:47
Promoted
Achieved Frontier Rank Silver II Today | Daily Rewards, Card Combine & Important Card Purchases!
Hello Splinterlands Warriors! Greetings to everyone, today's Splinterlands journey was great. I reached the Silver II league in the Frontier Rank match and collected interesting rewards. I also opened
golibrary
steempress
2020-03-20 03:32
Finding maximum number of fruits that can be kept in one basket
Problem Statement Given an array of characters where each character represents a fruit tree, you are given two baskets and your goal is to put maximum number of fruits in each basket. The only restriction
golibrary
steempress
2020-03-18 13:02
Length of smallest subarray with a sum greater than or equal to S
Problem Statement Given an array of positive numbers and a positive number ‘S’, find the length of the smallest contiguous subarray whose sum is greater than or equal to ‘S’. Return 0, if no such subarray
golibrary
steempress
2020-03-17 11:53
Finding max sum of subarray with a given length in an array
Problem Statement Given an array of positive numbers and a positive number ‘k’, find the maximum sum of any contiguous subarray of size ‘k’. Example 1: Input: [2, 1, 5, 1, 3, 2], k=3 Output: 9
golibrary
steempress
2020-03-09 11:16
Puppet Basic Concepts
What is Puppet? Puppet is an open-source configuration management tool. It is a declarative language for expressing system configuration. Puppet is a client and server for distributing it. It is a library
whose
Splinterlands
2026-06-26 09:59
Promoted
Daily Reward Claimed | 10 Cards & 6 Entry Points
Hello Splinterlands Warriors! Greetings to everyone, I hope everyone has a good day today. Today I am back with another new game play of Splinterlands. Last night, I played the game continuously in the
golibrary
steempress
2020-03-09 10:59
History of Unix and Linux
Let's dive deep into the history of unix and linux, the most revolutionary OSes of all time. Unix History: Unix is a computer operating system developed in 1969 by a group of AT&T employees at
golibrary
steempress
2020-03-06 12:07
Optimizing hierarchical SQL queries
Overview Every enterprise system has hierarchical data. The reporting engine of these systems generates reports displaying hierarchical tree structures. These kinds of reports are always a performance
golibrary
steempress
2020-03-05 12:03
Application performance analysis using Windows toolkit
Why the CPU utilization is near to 100% on my server machine? Why there is a steady decrease in the available memory? Why the calls are getting dropped? We often get these kinds of questions If we are
golibrary
steempress
2020-03-03 01:41
Quantum money and bitcoin
Image This article is originally published in Albaron Ventures. Deemed as one of the biggest potential technological revolutions of recent history, quantum computing also poses security risks for the
luchyl
Weekend Experiences
2026-06-20 23:10
Promoted
Time And Situations Changed My Taste - WK 312
I grew up in a family where savory/spicy foods were a thing. Soups, stew, yam porridge, fries, scrambled eggs, name it. My dad loved spicy food, and still does. The pepper had to be there. Salt was another
golibrary
steempress
2020-03-01 12:11
Finding diameter of a binary tree
Problem statement:- Given a binary tree, you need to compute the length of the diameter of the tree. The diameter of a binary tree is the length of the longest path between any two nodes in a tree. This
golibrary
steempress
2020-02-28 01:22
Find cells with odd values in a matrix
Problem Statement:- Given n and m which are the dimensions of a matrix initialized by zeros and given an array indices where indices[i] = [ri, ci]. For each pair of [ri, ci] you have to increment all cells
golibrary
steempress
2020-02-27 12:03
Check if two given strings are ispmorphic
Problem statement:- Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the characters in s can be replaced to get t. All occurrences of a character must be replaced
golibrary
steempress
2020-02-07 05:54
System Design: Design scalable typeahead component
Below is the Architecture diagram explaining the design pictorially Explanation Since , our data is massively large, we will keep it distributed on multiple servers named S1, S2, S3, and so on (which
darth-azrael
photography
2026-06-27 21:42
Promoted
Vintage Photos - Lot 6 (325-328)
All of the photos in this set were taken in 1971.
golibrary
steempress
2018-08-25 13:09
Hack remote databases using SQL injection
What is SQL Injection SQL injection is a technique of injecting malicious SQL queries in query string of a website vulnerable to SQL injection. Using SQL injection, one can take over a vulnerable website